Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Suman Ghosh <sumang@marvell.com>,
	Paolo Abeni <pabeni@redhat.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.14 716/783] octeontx2-pf: AF_XDP zero copy receive support
Date: Tue, 27 May 2025 18:28:33 +0200	[thread overview]
Message-ID: <20250527162542.272907101@linuxfoundation.org> (raw)
In-Reply-To: <20250527162513.035720581@linuxfoundation.org>

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

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

From: Suman Ghosh <sumang@marvell.com>

[ Upstream commit efabce29015189cb5cd8066cf29eb1d754de6c3c ]

This patch adds support to AF_XDP zero copy for CN10K.
This patch specifically adds receive side support. In this approach once
a xdp program with zero copy support on a specific rx queue is enabled,
then that receive quse is disabled/detached from the existing kernel
queue and re-assigned to the umem memory.

Signed-off-by: Suman Ghosh <sumang@marvell.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Stable-dep-of: 184fb40f731b ("octeontx2-pf: Avoid adding dcbnl_ops for LBK and SDP vf")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 .../ethernet/marvell/octeontx2/nic/Makefile   |   2 +-
 .../ethernet/marvell/octeontx2/nic/cn10k.c    |   7 +-
 .../marvell/octeontx2/nic/otx2_common.c       | 114 ++++++++---
 .../marvell/octeontx2/nic/otx2_common.h       |   6 +-
 .../ethernet/marvell/octeontx2/nic/otx2_pf.c  |  25 ++-
 .../marvell/octeontx2/nic/otx2_txrx.c         |  73 +++++--
 .../marvell/octeontx2/nic/otx2_txrx.h         |   6 +
 .../ethernet/marvell/octeontx2/nic/otx2_vf.c  |  12 +-
 .../ethernet/marvell/octeontx2/nic/otx2_xsk.c | 182 ++++++++++++++++++
 .../ethernet/marvell/octeontx2/nic/otx2_xsk.h |  21 ++
 .../ethernet/marvell/octeontx2/nic/qos_sq.c   |   2 +-
 11 files changed, 389 insertions(+), 61 deletions(-)
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.c
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.h

diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/Makefile b/drivers/net/ethernet/marvell/octeontx2/nic/Makefile
index cb6513ab35e74..69e0778f9ac10 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/Makefile
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/Makefile
@@ -9,7 +9,7 @@ obj-$(CONFIG_RVU_ESWITCH) += rvu_rep.o
 
 rvu_nicpf-y := otx2_pf.o otx2_common.o otx2_txrx.o otx2_ethtool.o \
                otx2_flows.o otx2_tc.o cn10k.o otx2_dmac_flt.o \
-               otx2_devlink.o qos_sq.o qos.o
+               otx2_devlink.o qos_sq.o qos.o otx2_xsk.o
 rvu_nicvf-y := otx2_vf.o
 rvu_rep-y := rep.o
 
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.c b/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.c
index a15cc86635d66..c3b6e0f60a799 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.c
@@ -112,9 +112,12 @@ int cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq)
 	struct otx2_nic *pfvf = dev;
 	int cnt = cq->pool_ptrs;
 	u64 ptrs[NPA_MAX_BURST];
+	struct otx2_pool *pool;
 	dma_addr_t bufptr;
 	int num_ptrs = 1;
 
+	pool = &pfvf->qset.pool[cq->cq_idx];
+
 	/* Refill pool with new buffers */
 	while (cq->pool_ptrs) {
 		if (otx2_alloc_buffer(pfvf, cq, &bufptr)) {
@@ -124,7 +127,9 @@ int cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq)
 			break;
 		}
 		cq->pool_ptrs--;
-		ptrs[num_ptrs] = (u64)bufptr + OTX2_HEAD_ROOM;
+		ptrs[num_ptrs] = pool->xsk_pool ?
+				 (u64)bufptr : (u64)bufptr + OTX2_HEAD_ROOM;
+
 		num_ptrs++;
 		if (num_ptrs == NPA_MAX_BURST || cq->pool_ptrs == 0) {
 			__cn10k_aura_freeptr(pfvf, cq->cq_idx, ptrs,
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
index 161cf33ef89ed..92b0dba07853a 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
@@ -17,6 +17,7 @@
 #include "otx2_common.h"
 #include "otx2_struct.h"
 #include "cn10k.h"
+#include "otx2_xsk.h"
 
 static bool otx2_is_pfc_enabled(struct otx2_nic *pfvf)
 {
@@ -549,10 +550,13 @@ static int otx2_alloc_pool_buf(struct otx2_nic *pfvf, struct otx2_pool *pool,
 }
 
 static int __otx2_alloc_rbuf(struct otx2_nic *pfvf, struct otx2_pool *pool,
-			     dma_addr_t *dma)
+			     dma_addr_t *dma, int qidx, int idx)
 {
 	u8 *buf;
 
+	if (pool->xsk_pool)
+		return otx2_xsk_pool_alloc_buf(pfvf, pool, dma, idx);
+
 	if (pool->page_pool)
 		return otx2_alloc_pool_buf(pfvf, pool, dma);
 
@@ -571,12 +575,12 @@ static int __otx2_alloc_rbuf(struct otx2_nic *pfvf, struct otx2_pool *pool,
 }
 
 int otx2_alloc_rbuf(struct otx2_nic *pfvf, struct otx2_pool *pool,
-		    dma_addr_t *dma)
+		    dma_addr_t *dma, int qidx, int idx)
 {
 	int ret;
 
 	local_bh_disable();
-	ret = __otx2_alloc_rbuf(pfvf, pool, dma);
+	ret = __otx2_alloc_rbuf(pfvf, pool, dma, qidx, idx);
 	local_bh_enable();
 	return ret;
 }
@@ -584,7 +588,8 @@ int otx2_alloc_rbuf(struct otx2_nic *pfvf, struct otx2_pool *pool,
 int otx2_alloc_buffer(struct otx2_nic *pfvf, struct otx2_cq_queue *cq,
 		      dma_addr_t *dma)
 {
-	if (unlikely(__otx2_alloc_rbuf(pfvf, cq->rbpool, dma)))
+	if (unlikely(__otx2_alloc_rbuf(pfvf, cq->rbpool, dma,
+				       cq->cq_idx, cq->pool_ptrs - 1)))
 		return -ENOMEM;
 	return 0;
 }
@@ -884,7 +889,7 @@ void otx2_sqb_flush(struct otx2_nic *pfvf)
 #define RQ_PASS_LVL_AURA (255 - ((95 * 256) / 100)) /* RED when 95% is full */
 #define RQ_DROP_LVL_AURA (255 - ((99 * 256) / 100)) /* Drop when 99% is full */
 
-static int otx2_rq_init(struct otx2_nic *pfvf, u16 qidx, u16 lpb_aura)
+int otx2_rq_init(struct otx2_nic *pfvf, u16 qidx, u16 lpb_aura)
 {
 	struct otx2_qset *qset = &pfvf->qset;
 	struct nix_aq_enq_req *aq;
@@ -1041,7 +1046,7 @@ int otx2_sq_init(struct otx2_nic *pfvf, u16 qidx, u16 sqb_aura)
 
 }
 
-static int otx2_cq_init(struct otx2_nic *pfvf, u16 qidx)
+int otx2_cq_init(struct otx2_nic *pfvf, u16 qidx)
 {
 	struct otx2_qset *qset = &pfvf->qset;
 	int err, pool_id, non_xdp_queues;
@@ -1057,11 +1062,18 @@ static int otx2_cq_init(struct otx2_nic *pfvf, u16 qidx)
 		cq->cint_idx = qidx;
 		cq->cqe_cnt = qset->rqe_cnt;
 		if (pfvf->xdp_prog) {
-			pool = &qset->pool[qidx];
 			xdp_rxq_info_reg(&cq->xdp_rxq, pfvf->netdev, qidx, 0);
-			xdp_rxq_info_reg_mem_model(&cq->xdp_rxq,
-						   MEM_TYPE_PAGE_POOL,
-						   pool->page_pool);
+			pool = &qset->pool[qidx];
+			if (pool->xsk_pool) {
+				xdp_rxq_info_reg_mem_model(&cq->xdp_rxq,
+							   MEM_TYPE_XSK_BUFF_POOL,
+							   NULL);
+				xsk_pool_set_rxq_info(pool->xsk_pool, &cq->xdp_rxq);
+			} else if (pool->page_pool) {
+				xdp_rxq_info_reg_mem_model(&cq->xdp_rxq,
+							   MEM_TYPE_PAGE_POOL,
+							   pool->page_pool);
+			}
 		}
 	} else if (qidx < non_xdp_queues) {
 		cq->cq_type = CQ_TX;
@@ -1281,9 +1293,10 @@ void otx2_free_bufs(struct otx2_nic *pfvf, struct otx2_pool *pool,
 
 	pa = otx2_iova_to_phys(pfvf->iommu_domain, iova);
 	page = virt_to_head_page(phys_to_virt(pa));
-
 	if (pool->page_pool) {
 		page_pool_put_full_page(pool->page_pool, page, true);
+	} else if (pool->xsk_pool) {
+		/* Note: No way of identifying xdp_buff */
 	} else {
 		dma_unmap_page_attrs(pfvf->dev, iova, size,
 				     DMA_FROM_DEVICE,
@@ -1298,6 +1311,7 @@ void otx2_free_aura_ptr(struct otx2_nic *pfvf, int type)
 	int pool_id, pool_start = 0, pool_end = 0, size = 0;
 	struct otx2_pool *pool;
 	u64 iova;
+	int idx;
 
 	if (type == AURA_NIX_SQ) {
 		pool_start = otx2_get_pool_idx(pfvf, type, 0);
@@ -1312,16 +1326,21 @@ void otx2_free_aura_ptr(struct otx2_nic *pfvf, int type)
 
 	/* Free SQB and RQB pointers from the aura pool */
 	for (pool_id = pool_start; pool_id < pool_end; pool_id++) {
-		iova = otx2_aura_allocptr(pfvf, pool_id);
 		pool = &pfvf->qset.pool[pool_id];
+		iova = otx2_aura_allocptr(pfvf, pool_id);
 		while (iova) {
 			if (type == AURA_NIX_RQ)
 				iova -= OTX2_HEAD_ROOM;
-
 			otx2_free_bufs(pfvf, pool, iova, size);
-
 			iova = otx2_aura_allocptr(pfvf, pool_id);
 		}
+
+		for (idx = 0 ; idx < pool->xdp_cnt; idx++) {
+			if (!pool->xdp[idx])
+				continue;
+
+			xsk_buff_free(pool->xdp[idx]);
+		}
 	}
 }
 
@@ -1338,7 +1357,8 @@ void otx2_aura_pool_free(struct otx2_nic *pfvf)
 		qmem_free(pfvf->dev, pool->stack);
 		qmem_free(pfvf->dev, pool->fc_addr);
 		page_pool_destroy(pool->page_pool);
-		pool->page_pool = NULL;
+		devm_kfree(pfvf->dev, pool->xdp);
+		pool->xsk_pool = NULL;
 	}
 	devm_kfree(pfvf->dev, pfvf->qset.pool);
 	pfvf->qset.pool = NULL;
@@ -1425,6 +1445,7 @@ int otx2_pool_init(struct otx2_nic *pfvf, u16 pool_id,
 		   int stack_pages, int numptrs, int buf_size, int type)
 {
 	struct page_pool_params pp_params = { 0 };
+	struct xsk_buff_pool *xsk_pool;
 	struct npa_aq_enq_req *aq;
 	struct otx2_pool *pool;
 	int err;
@@ -1468,21 +1489,35 @@ int otx2_pool_init(struct otx2_nic *pfvf, u16 pool_id,
 	aq->ctype = NPA_AQ_CTYPE_POOL;
 	aq->op = NPA_AQ_INSTOP_INIT;
 
-	if (type != AURA_NIX_RQ) {
-		pool->page_pool = NULL;
+	if (type != AURA_NIX_RQ)
+		return 0;
+
+	if (!test_bit(pool_id, pfvf->af_xdp_zc_qidx)) {
+		pp_params.order = get_order(buf_size);
+		pp_params.flags = PP_FLAG_DMA_MAP;
+		pp_params.pool_size = min(OTX2_PAGE_POOL_SZ, numptrs);
+		pp_params.nid = NUMA_NO_NODE;
+		pp_params.dev = pfvf->dev;
+		pp_params.dma_dir = DMA_FROM_DEVICE;
+		pool->page_pool = page_pool_create(&pp_params);
+		if (IS_ERR(pool->page_pool)) {
+			netdev_err(pfvf->netdev, "Creation of page pool failed\n");
+			return PTR_ERR(pool->page_pool);
+		}
 		return 0;
 	}
 
-	pp_params.order = get_order(buf_size);
-	pp_params.flags = PP_FLAG_DMA_MAP;
-	pp_params.pool_size = min(OTX2_PAGE_POOL_SZ, numptrs);
-	pp_params.nid = NUMA_NO_NODE;
-	pp_params.dev = pfvf->dev;
-	pp_params.dma_dir = DMA_FROM_DEVICE;
-	pool->page_pool = page_pool_create(&pp_params);
-	if (IS_ERR(pool->page_pool)) {
-		netdev_err(pfvf->netdev, "Creation of page pool failed\n");
-		return PTR_ERR(pool->page_pool);
+	/* Set XSK pool to support AF_XDP zero-copy */
+	xsk_pool = xsk_get_pool_from_qid(pfvf->netdev, pool_id);
+	if (xsk_pool) {
+		pool->xsk_pool = xsk_pool;
+		pool->xdp_cnt = numptrs;
+		pool->xdp = devm_kcalloc(pfvf->dev,
+					 numptrs, sizeof(struct xdp_buff *), GFP_KERNEL);
+		if (IS_ERR(pool->xdp)) {
+			netdev_err(pfvf->netdev, "Creation of xsk pool failed\n");
+			return PTR_ERR(pool->xdp);
+		}
 	}
 
 	return 0;
@@ -1543,9 +1578,18 @@ int otx2_sq_aura_pool_init(struct otx2_nic *pfvf)
 		}
 
 		for (ptr = 0; ptr < num_sqbs; ptr++) {
-			err = otx2_alloc_rbuf(pfvf, pool, &bufptr);
-			if (err)
+			err = otx2_alloc_rbuf(pfvf, pool, &bufptr, pool_id, ptr);
+			if (err) {
+				if (pool->xsk_pool) {
+					ptr--;
+					while (ptr >= 0) {
+						xsk_buff_free(pool->xdp[ptr]);
+						ptr--;
+					}
+				}
 				goto err_mem;
+			}
+
 			pfvf->hw_ops->aura_freeptr(pfvf, pool_id, bufptr);
 			sq->sqb_ptrs[sq->sqb_count++] = (u64)bufptr;
 		}
@@ -1595,11 +1639,19 @@ int otx2_rq_aura_pool_init(struct otx2_nic *pfvf)
 	/* Allocate pointers and free them to aura/pool */
 	for (pool_id = 0; pool_id < hw->rqpool_cnt; pool_id++) {
 		pool = &pfvf->qset.pool[pool_id];
+
 		for (ptr = 0; ptr < num_ptrs; ptr++) {
-			err = otx2_alloc_rbuf(pfvf, pool, &bufptr);
-			if (err)
+			err = otx2_alloc_rbuf(pfvf, pool, &bufptr, pool_id, ptr);
+			if (err) {
+				if (pool->xsk_pool) {
+					while (ptr)
+						xsk_buff_free(pool->xdp[--ptr]);
+				}
 				return -ENOMEM;
+			}
+
 			pfvf->hw_ops->aura_freeptr(pfvf, pool_id,
+						   pool->xsk_pool ? bufptr :
 						   bufptr + OTX2_HEAD_ROOM);
 		}
 	}
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h
index 0bec3a6af26a0..7477038d29e21 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h
@@ -533,6 +533,8 @@ struct otx2_nic {
 
 	/* Inline ipsec */
 	struct cn10k_ipsec	ipsec;
+	/* af_xdp zero-copy */
+	unsigned long		*af_xdp_zc_qidx;
 };
 
 static inline bool is_otx2_lbkvf(struct pci_dev *pdev)
@@ -1004,7 +1006,7 @@ void otx2_txschq_free_one(struct otx2_nic *pfvf, u16 lvl, u16 schq);
 void otx2_free_pending_sqe(struct otx2_nic *pfvf);
 void otx2_sqb_flush(struct otx2_nic *pfvf);
 int otx2_alloc_rbuf(struct otx2_nic *pfvf, struct otx2_pool *pool,
-		    dma_addr_t *dma);
+		    dma_addr_t *dma, int qidx, int idx);
 int otx2_rxtx_enable(struct otx2_nic *pfvf, bool enable);
 void otx2_ctx_disable(struct mbox *mbox, int type, bool npa);
 int otx2_nix_config_bp(struct otx2_nic *pfvf, bool enable);
@@ -1034,6 +1036,8 @@ void otx2_pfaf_mbox_destroy(struct otx2_nic *pf);
 void otx2_disable_mbox_intr(struct otx2_nic *pf);
 void otx2_disable_napi(struct otx2_nic *pf);
 irqreturn_t otx2_cq_intr_handler(int irq, void *cq_irq);
+int otx2_rq_init(struct otx2_nic *pfvf, u16 qidx, u16 lpb_aura);
+int otx2_cq_init(struct otx2_nic *pfvf, u16 qidx);
 
 /* RSS configuration APIs*/
 int otx2_rss_init(struct otx2_nic *pfvf);
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
index 4347a3c95350f..50a42cd5d50a2 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
@@ -27,6 +27,7 @@
 #include "qos.h"
 #include <rvu_trace.h>
 #include "cn10k_ipsec.h"
+#include "otx2_xsk.h"
 
 #define DRV_NAME	"rvu_nicpf"
 #define DRV_STRING	"Marvell RVU NIC Physical Function Driver"
@@ -1662,9 +1663,7 @@ void otx2_free_hw_resources(struct otx2_nic *pf)
 	struct nix_lf_free_req *free_req;
 	struct mbox *mbox = &pf->mbox;
 	struct otx2_cq_queue *cq;
-	struct otx2_pool *pool;
 	struct msg_req *req;
-	int pool_id;
 	int qidx;
 
 	/* Ensure all SQE are processed */
@@ -1705,13 +1704,6 @@ void otx2_free_hw_resources(struct otx2_nic *pf)
 	/* Free RQ buffer pointers*/
 	otx2_free_aura_ptr(pf, AURA_NIX_RQ);
 
-	for (qidx = 0; qidx < pf->hw.rx_queues; qidx++) {
-		pool_id = otx2_get_pool_idx(pf, AURA_NIX_RQ, qidx);
-		pool = &pf->qset.pool[pool_id];
-		page_pool_destroy(pool->page_pool);
-		pool->page_pool = NULL;
-	}
-
 	otx2_free_cq_res(pf);
 
 	/* Free all ingress bandwidth profiles allocated */
@@ -2788,6 +2780,8 @@ static int otx2_xdp(struct net_device *netdev, struct netdev_bpf *xdp)
 	switch (xdp->command) {
 	case XDP_SETUP_PROG:
 		return otx2_xdp_setup(pf, xdp->prog);
+	case XDP_SETUP_XSK_POOL:
+		return otx2_xsk_pool_setup(pf, xdp->xsk.pool, xdp->xsk.queue_id);
 	default:
 		return -EINVAL;
 	}
@@ -2865,6 +2859,7 @@ static const struct net_device_ops otx2_netdev_ops = {
 	.ndo_set_vf_vlan	= otx2_set_vf_vlan,
 	.ndo_get_vf_config	= otx2_get_vf_config,
 	.ndo_bpf		= otx2_xdp,
+	.ndo_xsk_wakeup		= otx2_xsk_wakeup,
 	.ndo_xdp_xmit           = otx2_xdp_xmit,
 	.ndo_setup_tc		= otx2_setup_tc,
 	.ndo_set_vf_trust	= otx2_ndo_set_vf_trust,
@@ -3203,16 +3198,26 @@ static int otx2_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	/* Enable link notifications */
 	otx2_cgx_config_linkevents(pf, true);
 
+	pf->af_xdp_zc_qidx = bitmap_zalloc(qcount, GFP_KERNEL);
+	if (!pf->af_xdp_zc_qidx) {
+		err = -ENOMEM;
+		goto err_sriov_cleannup;
+	}
+
 #ifdef CONFIG_DCB
 	err = otx2_dcbnl_set_ops(netdev);
 	if (err)
-		goto err_pf_sriov_init;
+		goto err_free_zc_bmap;
 #endif
 
 	otx2_qos_init(pf, qos_txqs);
 
 	return 0;
 
+err_free_zc_bmap:
+	bitmap_free(pf->af_xdp_zc_qidx);
+err_sriov_cleannup:
+	otx2_sriov_vfcfg_cleanup(pf);
 err_pf_sriov_init:
 	otx2_shutdown_tc(pf);
 err_mcam_flow_del:
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c
index 4a72750431036..00b6903ba250c 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c
@@ -12,6 +12,7 @@
 #include <linux/bpf_trace.h>
 #include <net/ip6_checksum.h>
 #include <net/xfrm.h>
+#include <net/xdp.h>
 
 #include "otx2_reg.h"
 #include "otx2_common.h"
@@ -523,9 +524,10 @@ static void otx2_adjust_adaptive_coalese(struct otx2_nic *pfvf, struct otx2_cq_p
 int otx2_napi_handler(struct napi_struct *napi, int budget)
 {
 	struct otx2_cq_queue *rx_cq = NULL;
+	struct otx2_cq_queue *cq = NULL;
+	struct otx2_pool *pool = NULL;
 	struct otx2_cq_poll *cq_poll;
 	int workdone = 0, cq_idx, i;
-	struct otx2_cq_queue *cq;
 	struct otx2_qset *qset;
 	struct otx2_nic *pfvf;
 	int filled_cnt = -1;
@@ -550,6 +552,7 @@ int otx2_napi_handler(struct napi_struct *napi, int budget)
 
 	if (rx_cq && rx_cq->pool_ptrs)
 		filled_cnt = pfvf->hw_ops->refill_pool_ptrs(pfvf, rx_cq);
+
 	/* Clear the IRQ */
 	otx2_write64(pfvf, NIX_LF_CINTX_INT(cq_poll->cint_idx), BIT_ULL(0));
 
@@ -562,20 +565,31 @@ int otx2_napi_handler(struct napi_struct *napi, int budget)
 		if (pfvf->flags & OTX2_FLAG_ADPTV_INT_COAL_ENABLED)
 			otx2_adjust_adaptive_coalese(pfvf, cq_poll);
 
+		if (likely(cq))
+			pool = &pfvf->qset.pool[cq->cq_idx];
+
 		if (unlikely(!filled_cnt)) {
 			struct refill_work *work;
 			struct delayed_work *dwork;
 
-			work = &pfvf->refill_wrk[cq->cq_idx];
-			dwork = &work->pool_refill_work;
-			/* Schedule a task if no other task is running */
-			if (!cq->refill_task_sched) {
-				work->napi = napi;
-				cq->refill_task_sched = true;
-				schedule_delayed_work(dwork,
-						      msecs_to_jiffies(100));
+			if (likely(cq)) {
+				work = &pfvf->refill_wrk[cq->cq_idx];
+				dwork = &work->pool_refill_work;
+				/* Schedule a task if no other task is running */
+				if (!cq->refill_task_sched) {
+					work->napi = napi;
+					cq->refill_task_sched = true;
+					schedule_delayed_work(dwork,
+							      msecs_to_jiffies(100));
+				}
+				/* Call wake-up for not able to fill buffers */
+				if (pool->xsk_pool)
+					xsk_set_rx_need_wakeup(pool->xsk_pool);
 			}
 		} else {
+			/* Clear wake-up, since buffers are filled successfully */
+			if (pool && pool->xsk_pool)
+				xsk_clear_rx_need_wakeup(pool->xsk_pool);
 			/* Re-enable interrupts */
 			otx2_write64(pfvf,
 				     NIX_LF_CINTX_ENA_W1S(cq_poll->cint_idx),
@@ -1226,15 +1240,19 @@ void otx2_cleanup_rx_cqes(struct otx2_nic *pfvf, struct otx2_cq_queue *cq, int q
 	u16 pool_id;
 	u64 iova;
 
-	if (pfvf->xdp_prog)
+	pool_id = otx2_get_pool_idx(pfvf, AURA_NIX_RQ, qidx);
+	pool = &pfvf->qset.pool[pool_id];
+
+	if (pfvf->xdp_prog) {
+		if (pool->page_pool)
+			xdp_rxq_info_unreg_mem_model(&cq->xdp_rxq);
+
 		xdp_rxq_info_unreg(&cq->xdp_rxq);
+	}
 
 	if (otx2_nix_cq_op_status(pfvf, cq) || !cq->pend_cqe)
 		return;
 
-	pool_id = otx2_get_pool_idx(pfvf, AURA_NIX_RQ, qidx);
-	pool = &pfvf->qset.pool[pool_id];
-
 	while (cq->pend_cqe) {
 		cqe = (struct nix_cqe_rx_s *)otx2_get_next_cqe(cq);
 		processed_cqe++;
@@ -1418,17 +1436,28 @@ static bool otx2_xdp_rcv_pkt_handler(struct otx2_nic *pfvf,
 				     struct otx2_cq_queue *cq,
 				     bool *need_xdp_flush)
 {
+	struct xdp_buff xdp, *xsk_buff = NULL;
 	unsigned char *hard_start;
 	struct otx2_pool *pool;
 	struct xdp_frame *xdpf;
 	int qidx = cq->cq_idx;
-	struct xdp_buff xdp;
 	struct page *page;
 	u64 iova, pa;
 	u32 act;
 	int err;
 
 	pool = &pfvf->qset.pool[qidx];
+
+	if (pool->xsk_pool) {
+		xsk_buff = pool->xdp[--cq->rbpool->xdp_top];
+		if (!xsk_buff)
+			return false;
+
+		xsk_buff->data_end = xsk_buff->data + cqe->sg.seg_size;
+		act = bpf_prog_run_xdp(prog, xsk_buff);
+		goto handle_xdp_verdict;
+	}
+
 	iova = cqe->sg.seg_addr - OTX2_HEAD_ROOM;
 	pa = otx2_iova_to_phys(pfvf->iommu_domain, iova);
 	page = virt_to_page(phys_to_virt(pa));
@@ -1441,6 +1470,7 @@ static bool otx2_xdp_rcv_pkt_handler(struct otx2_nic *pfvf,
 
 	act = bpf_prog_run_xdp(prog, &xdp);
 
+handle_xdp_verdict:
 	switch (act) {
 	case XDP_PASS:
 		break;
@@ -1452,6 +1482,15 @@ static bool otx2_xdp_rcv_pkt_handler(struct otx2_nic *pfvf,
 					      cqe->sg.seg_size, qidx, XDP_TX);
 	case XDP_REDIRECT:
 		cq->pool_ptrs++;
+		if (xsk_buff) {
+			err = xdp_do_redirect(pfvf->netdev, xsk_buff, prog);
+			if (!err) {
+				*need_xdp_flush = true;
+				return true;
+			}
+			return false;
+		}
+
 		err = xdp_do_redirect(pfvf->netdev, &xdp, prog);
 		if (!err) {
 			*need_xdp_flush = true;
@@ -1467,11 +1506,15 @@ static bool otx2_xdp_rcv_pkt_handler(struct otx2_nic *pfvf,
 		bpf_warn_invalid_xdp_action(pfvf->netdev, prog, act);
 		break;
 	case XDP_ABORTED:
+		if (xsk_buff)
+			xsk_buff_free(xsk_buff);
 		trace_xdp_exception(pfvf->netdev, prog, act);
 		break;
 	case XDP_DROP:
 		cq->pool_ptrs++;
-		if (page->pp) {
+		if (xsk_buff) {
+			xsk_buff_free(xsk_buff);
+		} else if (page->pp) {
 			page_pool_recycle_direct(pool->page_pool, page);
 		} else {
 			otx2_dma_unmap_page(pfvf, iova, pfvf->rbsize,
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h
index 92e1e84cad75c..8f346fbc8221f 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h
@@ -12,6 +12,7 @@
 #include <linux/iommu.h>
 #include <linux/if_vlan.h>
 #include <net/xdp.h>
+#include <net/xdp_sock_drv.h>
 
 #define LBK_CHAN_BASE	0x000
 #define SDP_CHAN_BASE	0x700
@@ -128,7 +129,11 @@ struct otx2_pool {
 	struct qmem		*stack;
 	struct qmem		*fc_addr;
 	struct page_pool	*page_pool;
+	struct xsk_buff_pool	*xsk_pool;
+	struct xdp_buff		**xdp;
+	u16			xdp_cnt;
 	u16			rbsize;
+	u16			xdp_top;
 };
 
 struct otx2_cq_queue {
@@ -145,6 +150,7 @@ struct otx2_cq_queue {
 	void			*cqe_base;
 	struct qmem		*cqe;
 	struct otx2_pool	*rbpool;
+	bool			xsk_zc_en;
 	struct xdp_rxq_info xdp_rxq;
 } ____cacheline_aligned_in_smp;
 
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c
index e926c6ce96cff..63ddd262d1229 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c
@@ -722,15 +722,25 @@ static int otx2vf_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	if (err)
 		goto err_shutdown_tc;
 
+	vf->af_xdp_zc_qidx = bitmap_zalloc(qcount, GFP_KERNEL);
+	if (!vf->af_xdp_zc_qidx) {
+		err = -ENOMEM;
+		goto err_unreg_devlink;
+	}
+
 #ifdef CONFIG_DCB
 	err = otx2_dcbnl_set_ops(netdev);
 	if (err)
-		goto err_shutdown_tc;
+		goto err_free_zc_bmap;
 #endif
 	otx2_qos_init(vf, qos_txqs);
 
 	return 0;
 
+err_free_zc_bmap:
+	bitmap_free(vf->af_xdp_zc_qidx);
+err_unreg_devlink:
+	otx2_unregister_dl(vf);
 err_shutdown_tc:
 	otx2_shutdown_tc(vf);
 err_unreg_netdev:
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.c
new file mode 100644
index 0000000000000..894c1e0aea6f1
--- /dev/null
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.c
@@ -0,0 +1,182 @@
+// SPDX-License-Identifier: GPL-2.0
+/* Marvell RVU Ethernet driver
+ *
+ * Copyright (C) 2024 Marvell.
+ *
+ */
+
+#include <linux/bpf_trace.h>
+#include <linux/stringify.h>
+#include <net/xdp_sock_drv.h>
+#include <net/xdp.h>
+
+#include "otx2_common.h"
+#include "otx2_xsk.h"
+
+int otx2_xsk_pool_alloc_buf(struct otx2_nic *pfvf, struct otx2_pool *pool,
+			    dma_addr_t *dma, int idx)
+{
+	struct xdp_buff *xdp;
+	int delta;
+
+	xdp = xsk_buff_alloc(pool->xsk_pool);
+	if (!xdp)
+		return -ENOMEM;
+
+	pool->xdp[pool->xdp_top++] = xdp;
+	*dma = OTX2_DATA_ALIGN(xsk_buff_xdp_get_dma(xdp));
+	/* Adjust xdp->data for unaligned addresses */
+	delta = *dma - xsk_buff_xdp_get_dma(xdp);
+	xdp->data += delta;
+
+	return 0;
+}
+
+static int otx2_xsk_ctx_disable(struct otx2_nic *pfvf, u16 qidx, int aura_id)
+{
+	struct nix_cn10k_aq_enq_req *cn10k_rq_aq;
+	struct npa_aq_enq_req *aura_aq;
+	struct npa_aq_enq_req *pool_aq;
+	struct nix_aq_enq_req *rq_aq;
+
+	if (test_bit(CN10K_LMTST, &pfvf->hw.cap_flag)) {
+		cn10k_rq_aq = otx2_mbox_alloc_msg_nix_cn10k_aq_enq(&pfvf->mbox);
+		if (!cn10k_rq_aq)
+			return -ENOMEM;
+		cn10k_rq_aq->qidx = qidx;
+		cn10k_rq_aq->rq.ena = 0;
+		cn10k_rq_aq->rq_mask.ena = 1;
+		cn10k_rq_aq->ctype = NIX_AQ_CTYPE_RQ;
+		cn10k_rq_aq->op = NIX_AQ_INSTOP_WRITE;
+	} else {
+		rq_aq = otx2_mbox_alloc_msg_nix_aq_enq(&pfvf->mbox);
+		if (!rq_aq)
+			return -ENOMEM;
+		rq_aq->qidx = qidx;
+		rq_aq->sq.ena = 0;
+		rq_aq->sq_mask.ena = 1;
+		rq_aq->ctype = NIX_AQ_CTYPE_RQ;
+		rq_aq->op = NIX_AQ_INSTOP_WRITE;
+	}
+
+	aura_aq = otx2_mbox_alloc_msg_npa_aq_enq(&pfvf->mbox);
+	if (!aura_aq)
+		goto fail;
+
+	aura_aq->aura_id = aura_id;
+	aura_aq->aura.ena = 0;
+	aura_aq->aura_mask.ena = 1;
+	aura_aq->ctype = NPA_AQ_CTYPE_AURA;
+	aura_aq->op = NPA_AQ_INSTOP_WRITE;
+
+	pool_aq = otx2_mbox_alloc_msg_npa_aq_enq(&pfvf->mbox);
+	if (!pool_aq)
+		goto fail;
+
+	pool_aq->aura_id = aura_id;
+	pool_aq->pool.ena = 0;
+	pool_aq->pool_mask.ena = 1;
+
+	pool_aq->ctype = NPA_AQ_CTYPE_POOL;
+	pool_aq->op = NPA_AQ_INSTOP_WRITE;
+
+	return otx2_sync_mbox_msg(&pfvf->mbox);
+
+fail:
+	otx2_mbox_reset(&pfvf->mbox.mbox, 0);
+	return -ENOMEM;
+}
+
+static void otx2_clean_up_rq(struct otx2_nic *pfvf, int qidx)
+{
+	struct otx2_qset *qset = &pfvf->qset;
+	struct otx2_cq_queue *cq;
+	struct otx2_pool *pool;
+	u64 iova;
+
+	/* If the DOWN flag is set SQs are already freed */
+	if (pfvf->flags & OTX2_FLAG_INTF_DOWN)
+		return;
+
+	cq = &qset->cq[qidx];
+	if (cq)
+		otx2_cleanup_rx_cqes(pfvf, cq, qidx);
+
+	pool = &pfvf->qset.pool[qidx];
+	iova = otx2_aura_allocptr(pfvf, qidx);
+	while (iova) {
+		iova -= OTX2_HEAD_ROOM;
+		otx2_free_bufs(pfvf, pool, iova, pfvf->rbsize);
+		iova = otx2_aura_allocptr(pfvf, qidx);
+	}
+
+	mutex_lock(&pfvf->mbox.lock);
+	otx2_xsk_ctx_disable(pfvf, qidx, qidx);
+	mutex_unlock(&pfvf->mbox.lock);
+}
+
+int otx2_xsk_pool_enable(struct otx2_nic *pf, struct xsk_buff_pool *pool, u16 qidx)
+{
+	u16 rx_queues = pf->hw.rx_queues;
+	u16 tx_queues = pf->hw.tx_queues;
+	int err;
+
+	if (qidx >= rx_queues || qidx >= tx_queues)
+		return -EINVAL;
+
+	err = xsk_pool_dma_map(pool, pf->dev, DMA_ATTR_SKIP_CPU_SYNC | DMA_ATTR_WEAK_ORDERING);
+	if (err)
+		return err;
+
+	set_bit(qidx, pf->af_xdp_zc_qidx);
+	otx2_clean_up_rq(pf, qidx);
+	/* Kick start the NAPI context so that receiving will start */
+	return otx2_xsk_wakeup(pf->netdev, qidx, XDP_WAKEUP_RX);
+}
+
+int otx2_xsk_pool_disable(struct otx2_nic *pf, u16 qidx)
+{
+	struct net_device *netdev = pf->netdev;
+	struct xsk_buff_pool *pool;
+
+	pool = xsk_get_pool_from_qid(netdev, qidx);
+	if (!pool)
+		return -EINVAL;
+
+	otx2_clean_up_rq(pf, qidx);
+	clear_bit(qidx, pf->af_xdp_zc_qidx);
+	xsk_pool_dma_unmap(pool, DMA_ATTR_SKIP_CPU_SYNC | DMA_ATTR_WEAK_ORDERING);
+
+	return 0;
+}
+
+int otx2_xsk_pool_setup(struct otx2_nic *pf, struct xsk_buff_pool *pool, u16 qidx)
+{
+	if (pool)
+		return otx2_xsk_pool_enable(pf, pool, qidx);
+
+	return otx2_xsk_pool_disable(pf, qidx);
+}
+
+int otx2_xsk_wakeup(struct net_device *dev, u32 queue_id, u32 flags)
+{
+	struct otx2_nic *pf = netdev_priv(dev);
+	struct otx2_cq_poll *cq_poll = NULL;
+	struct otx2_qset *qset = &pf->qset;
+
+	if (pf->flags & OTX2_FLAG_INTF_DOWN)
+		return -ENETDOWN;
+
+	if (queue_id >= pf->hw.rx_queues)
+		return -EINVAL;
+
+	cq_poll = &qset->napi[queue_id];
+	if (!cq_poll)
+		return -EINVAL;
+
+	/* Trigger interrupt */
+	if (!napi_if_scheduled_mark_missed(&cq_poll->napi))
+		otx2_write64(pf, NIX_LF_CINTX_ENA_W1S(cq_poll->cint_idx), BIT_ULL(0));
+
+	return 0;
+}
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.h b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.h
new file mode 100644
index 0000000000000..022b3433edbbb
--- /dev/null
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_xsk.h
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/* Marvell RVU PF/VF Netdev Devlink
+ *
+ * Copyright (C) 2024 Marvell.
+ *
+ */
+
+#ifndef	OTX2_XSK_H
+#define	OTX2_XSK_H
+
+struct otx2_nic;
+struct xsk_buff_pool;
+
+int otx2_xsk_pool_setup(struct otx2_nic *pf, struct xsk_buff_pool *pool, u16 qid);
+int otx2_xsk_pool_enable(struct otx2_nic *pf, struct xsk_buff_pool *pool, u16 qid);
+int otx2_xsk_pool_disable(struct otx2_nic *pf, u16 qid);
+int otx2_xsk_pool_alloc_buf(struct otx2_nic *pfvf, struct otx2_pool *pool,
+			    dma_addr_t *dma, int idx);
+int otx2_xsk_wakeup(struct net_device *dev, u32 queue_id, u32 flags);
+
+#endif /* OTX2_XSK_H */
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/qos_sq.c b/drivers/net/ethernet/marvell/octeontx2/nic/qos_sq.c
index 9d887bfc31089..c5dbae0e513b6 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/qos_sq.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/qos_sq.c
@@ -82,7 +82,7 @@ static int otx2_qos_sq_aura_pool_init(struct otx2_nic *pfvf, int qidx)
 	}
 
 	for (ptr = 0; ptr < num_sqbs; ptr++) {
-		err = otx2_alloc_rbuf(pfvf, pool, &bufptr);
+		err = otx2_alloc_rbuf(pfvf, pool, &bufptr, pool_id, ptr);
 		if (err)
 			goto sqb_free;
 		pfvf->hw_ops->aura_freeptr(pfvf, pool_id, bufptr);
-- 
2.39.5




  parent reply	other threads:[~2025-05-27 17:54 UTC|newest]

Thread overview: 818+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-27 16:16 [PATCH 6.14 000/783] 6.14.9-rc1 review Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 001/783] drm/amd/display: Do not enable replay when vtotal update is pending Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 002/783] drm/amd/display: Correct timing_adjust_pending flag setting Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 003/783] drm/amd/display: Defer BW-optimization-blocked DRR adjustments Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 004/783] phy: renesas: rcar-gen3-usb2: Move IRQ request in probe Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 005/783] phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 006/783] phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 007/783] nvmet: pci-epf: Keep completion queues mapped Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 008/783] nvmet: pci-epf: clear completion queue IRQ flag on delete Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 009/783] cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 010/783] nvmem: rockchip-otp: Move read-offset into variant-data Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 011/783] nvmem: rockchip-otp: add rk3576 variant data Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 012/783] nvmem: core: fix bit offsets of more than one byte Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 013/783] nvmem: core: verify cells raw_len Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 014/783] nvmem: core: update raw_len if the bit reading is required Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 015/783] nvmem: qfprom: switch to 4-byte aligned reads Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 016/783] scsi: target: iscsi: Fix timeout on deleted connection Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 017/783] scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 018/783] virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 019/783] dma/mapping.c: dev_dbg support for dma_addressing_limited Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 020/783] intel_th: avoid using deprecated page->mapping, index fields Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 021/783] mei: vsc: Use struct vsc_tp_packet as vsc-tp tx_buf and rx_buf type Greg Kroah-Hartman
2025-05-27 16:16 ` [PATCH 6.14 022/783] dma-mapping: avoid potential unused data compilation warning Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 023/783] btrfs: tree-checker: adjust error code for header level check Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 024/783] cgroup: Fix compilation issue due to cgroup_mutex not being exported Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 025/783] vhost_task: fix vhost_task_create() documentation Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 026/783] vhost-scsi: protect vq->log_used with vq->mutex Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 027/783] scsi: mpi3mr: Add level check to control event logging Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 028/783] dma-mapping: Fix warning reported for missing prototype Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 029/783] ima: process_measurement() needlessly takes inode_lock() on MAY_READ Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 030/783] fs/buffer: split locking for pagecache lookups Greg Kroah-Hartman
2025-05-30 16:46   ` Luis Chamberlain
2025-05-27 16:17 ` [PATCH 6.14 031/783] fs/buffer: introduce sleeping flavors " Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 032/783] fs/buffer: use sleeping version of __find_get_block() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 033/783] fs/ocfs2: " Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 034/783] fs/jbd2: " Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 035/783] fs/ext4: use sleeping version of sb_find_get_block() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 036/783] drm/amd/display: Enable urgent latency adjustment on DCN35 Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 037/783] drm/amdgpu: Allow P2P access through XGMI Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 038/783] selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 039/783] block: fix race between set_blocksize and read paths Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 040/783] block: hoist block size validation code to a separate function Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 041/783] io_uring: dont duplicate flushing in io_req_post_cqe Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 042/783] bpf: fix possible endless loop in BPF map iteration Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 043/783] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 044/783] kconfig: merge_config: use an empty file as initfile Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 045/783] x86/fred: Fix system hang during S4 resume with FRED enabled Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 046/783] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 047/783] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 048/783] cifs: Fix querying and creating MF symlinks over SMB1 Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 049/783] cifs: Fix access_flags_to_smbopen_mode Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 050/783] cifs: Fix negotiate retry functionality Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 051/783] smb: client: Store original IO parameters and prevent zero IO sizes Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 052/783] fuse: Return EPERM rather than ENOSYS from link() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 053/783] exfat: call bh_read in get_block only when necessary Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 054/783] io_uring/msg: initialise msg request opcode Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 055/783] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 056/783] NFS: Dont allow waiting for exiting tasks Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 057/783] SUNRPC: " Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 058/783] arm64: Add support for HIP09 Spectre-BHB mitigation Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 059/783] iommufd: Extend IOMMU_GET_HW_INFO to report PASID capability Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 060/783] ring-buffer: Use kaslr address instead of text delta Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 061/783] tracing: Mark binary printing functions with __printf() attribute Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 062/783] ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 063/783] tpm: Convert warn to dbg in tpm2_start_auth_session() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 064/783] mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 065/783] mailbox: use error ret code of of_parse_phandle_with_args() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 066/783] riscv: Allow NOMMU kernels to access all of RAM Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 067/783] fbdev: fsl-diu-fb: add missing device_remove_file() Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 068/783] fbcon: Use correct erase colour for clearing in fbcon Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 069/783] fbdev: core: tileblit: Implement missing margin clearing for tileblit Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 070/783] cifs: Set default Netbios RFC1001 server name to hostname in UNC Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 071/783] cifs: add validation check for the fields in smb_aces Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 072/783] cifs: Fix establishing NetBIOS session for SMB2+ connection Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 073/783] cifs: Fix getting DACL-only xattr system.cifs_acl and system.smb3_acl Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 074/783] cifs: Check if server supports reparse points before using them Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 075/783] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 076/783] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 077/783] SUNRPC: rpcbind should never reset the port to the value 0 Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 078/783] spi-rockchip: Fix register out of bounds access Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 079/783] ASoC: codecs: wsa884x: Correct VI sense channel mask Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 080/783] ASoC: codecs: wsa883x: " Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 081/783] mctp: Fix incorrect tx flow invalidation condition in mctp-i2c Greg Kroah-Hartman
2025-05-27 16:17 ` [PATCH 6.14 082/783] net: tn40xx: add pci-id of the aqr105-based Tehuti TN4010 cards Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 083/783] net: tn40xx: create swnode for mdio and aqr105 phy and add to mdiobus Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 084/783] thermal/drivers/mediatek/lvts: Start sensor interrupts disabled Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 085/783] thermal/drivers/qoriq: Power down TMU on system suspend Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 086/783] Bluetooth: btmtksdio: Prevent enabling interrupts after IRQ handler removal Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 087/783] Bluetooth: Disable SCO support if READ_VOICE_SETTING is unsupported/broken Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 088/783] RISC-V: add vector extension validation checks Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 089/783] dql: Fix dql->limit value when reset Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 090/783] lockdep: Fix wait context check on softirq for PREEMPT_RT Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 091/783] objtool: Properly disable uaccess validation Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 092/783] net/mlx5e: Use right API to free bitmap memory Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 093/783] PCI: dwc: ep: Ensure proper iteration over outbound map windows Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 094/783] r8169: disable RTL8126 ZRX-DC timeout Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 095/783] tools/build: Dont pass test log files to linker Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 096/783] PCI: xilinx-cpm: Add cpm_csr register mapping for CPM5_HOST1 variant Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 097/783] i2c: qcom-geni: Update i2c frequency table to match hardware guidance Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 098/783] pNFS/flexfiles: Report ENETDOWN as a connection error Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 099/783] drm/amdgpu/discovery: check ip_discovery fw file available Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 100/783] drm/amdgpu: rework how the cleaner shader is emitted v3 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 101/783] drm/amdgpu: rework how isolation is enforced v2 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 102/783] drm/amdgpu: use GFP_NOWAIT for memory allocations Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 103/783] drm/amdkfd: set precise mem ops caps to disabled for gfx 11 and 12 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 104/783] PCI: vmd: Disable MSI remapping bypass under Xen Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 105/783] xen/pci: Do not register devices with segments >= 0x10000 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 106/783] ext4: on a remount, only log the ro or r/w state when it has changed Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 107/783] libnvdimm/labels: Fix divide error in nd_label_data_init() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 108/783] pidfs: improve multi-threaded exec and premature thread-group leader exit polling Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 109/783] staging: vchiq_arm: Create keep-alive thread during probe Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 110/783] mmc: host: Wait for Vdd to settle on card power off Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 111/783] drm/amdgpu: Skip pcie_replay_count sysfs creation for VF Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 112/783] cgroup/rstat: avoid disabling irqs for O(num_cpu) Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 113/783] wifi: mt76: Check link_conf pointer in mt76_connac_mcu_sta_basic_tlv() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 114/783] wifi: mt76: scan: fix setting tx_info fields Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 115/783] wifi: mt76: mt7996: implement driver specific get_txpower function Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 116/783] wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 117/783] wifi: mt76: mt7996: use the correct vif link for scanning/roc Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 118/783] wifi: mt76: scan: set vif offchannel " Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 119/783] wifi: mt76: mt7996: fix SER reset trigger on WED reset Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 120/783] wifi: mt76: mt7996: revise TXS size Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 121/783] wifi: mt76: mt7925: load the appropriate CLC data based on hardware type Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 122/783] wifi: mt76: mt7925: Simplify HIF suspend handling to avoid suspend fail Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 123/783] wifi: mt76: mt7925: fix fails to enter low power mode in suspend state Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 124/783] x86/headers: Replace __ASSEMBLY__ with __ASSEMBLER__ in non-UAPI headers Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 125/783] x86/headers: Replace __ASSEMBLY__ with __ASSEMBLER__ in UAPI headers Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 126/783] x86/stackprotector/64: Only export __ref_stack_chk_guard on CONFIG_SMP Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 127/783] x86/smpboot: Fix INIT delay assignment for extended Intel Families Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 128/783] x86/microcode: Update the Intel processor flag scan check Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 129/783] x86/amd_node: Add SMN offsets to exclusive region access Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 130/783] x86/mm: Check return value from memblock_phys_alloc_range() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 131/783] i2c: qup: Vote for interconnect bandwidth to DRAM Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 132/783] i2c: amd-asf: Set cmd variable when encountering an error Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 133/783] i2c: pxa: fix call balance of i2c->clk handling routines Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 134/783] btrfs: make btrfs_discard_workfn() block_group ref explicit Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 135/783] btrfs: avoid linker error in btrfs_find_create_tree_block() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 136/783] btrfs: run btrfs_error_commit_super() early Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 137/783] btrfs: fix non-empty delayed iputs list on unmount due to async workers Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 138/783] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 139/783] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 140/783] blk-cgroup: improve policy registration error handling Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 141/783] drm/amdgpu: release xcp_mgr on exit Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.14 142/783] drm/amd/display: Guard against setting dispclk low for dcn31x Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 143/783] drm/amdgpu: dont free conflicting apertures for non-display devices Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 144/783] drm/amdgpu: adjust drm_firmware_drivers_only() handling Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 145/783] i3c: master: svc: Fix missing STOP for master request Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 146/783] s390/tlb: Use mm_has_pgste() instead of mm_alloc_pgste() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 147/783] dlm: make tcp still work in multi-link env Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 148/783] loop: move vfs_fsync() out of loop_update_dio() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 149/783] clocksource/drivers/timer-riscv: Stop stimecmp when cpu hotplug Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 150/783] um: Store full CSGSFS and SS register from mcontext Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 151/783] um: Update min_low_pfn to match changes in uml_reserved Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 152/783] net/mlx5: Preserve rate settings when creating a rate node Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 153/783] wifi: mwifiex: Fix HT40 bandwidth issue Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 154/783] bnxt_en: Query FW parameters when the CAPS_CHANGE bit is set Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 155/783] ixgbe: add support for thermal sensor event reception Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 156/783] riscv: Call secondary mmu notifier when flushing the tlb Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 157/783] ext4: reorder capability check last Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 158/783] hypfs_create_cpu_files(): add missing check for hypfs_mkdir() failure Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 159/783] scsi: st: Tighten the page format heuristics with MODE SELECT Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 160/783] scsi: st: ERASE does not change tape location Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 161/783] vfio/pci: Handle INTx IRQ_NOTCONNECTED Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 162/783] bpftool: Using the right format specifiers Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 163/783] bpf: Return prog btf_id without capable check Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 164/783] PCI: dwc: Use resource start as ioremap() input in dw_pcie_pme_turn_off() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 165/783] jbd2: do not try to recover wiped journal Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 166/783] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 167/783] rtc: rv3032: fix EERD location Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 168/783] objtool: Fix error handling inconsistencies in check() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 169/783] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 170/783] erofs: initialize decompression early Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 171/783] spi: spi-mux: Fix coverity issue, unchecked return value Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 172/783] ASoC: sma1307: Add NULL check in sma1307_setting_loaded() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 173/783] ASoC: pcm6240: Drop bogus code handling IRQ as GPIO Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 174/783] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 175/783] kunit: tool: Fix bug in parsing test plan Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 176/783] bpf: Allow pre-ordering for bpf cgroup progs Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 177/783] kbuild: fix argument parsing in scripts/config Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 178/783] kconfig: do not clear SYMBOL_VALID when reading include/config/auto.conf Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 179/783] crypto: octeontx2 - suppress auth failure screaming due to negative tests Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 180/783] dm: restrict dm device size to 2^63-512 bytes Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 181/783] net/smc: use the correct ndev to find pnetid by pnetid table Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 182/783] xen: Add support for XenServer 6.1 platform device Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 183/783] pinctrl-tegra: Restore SFSEL bit when freeing pins Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 184/783] mfd: syscon: Add check for invalid resource size Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 185/783] mfd: tps65219: Remove TPS65219_REG_TI_DEV_ID check Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 186/783] drm/amdgpu/gfx12: dont read registers in mqd init Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 187/783] drm/amdgpu/gfx11: " Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 188/783] drm/amdgpu: Update SRIOV video codec caps Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 189/783] ASoC: sun4i-codec: support hp-det-gpios property Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 190/783] ASoC: sun4i-codec: correct dapm widgets and controls for h616 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 191/783] clk: qcom: lpassaudiocc-sc7280: Add support for LPASS resets for QCM6490 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 192/783] leds: Kconfig: leds-st1202: Add select for required LEDS_TRIGGER_PATTERN Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 193/783] leds: leds-st1202: Initialize hardware before DT node child operations Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 194/783] ext4: reject the data_err=abort option in nojournal mode Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 195/783] ext4: do not convert the unwritten extents if data writeback fails Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 196/783] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 197/783] posix-timers: Add cond_resched() to posix_timer_add() search loop Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 198/783] posix-timers: Ensure that timer initialization is fully visible Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 199/783] net: stmmac: dwmac-rk: Validate GRF and peripheral GRF during probe Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 200/783] net: hsr: Fix PRP duplicate detection Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 201/783] timer_list: Dont use %pK through printk() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.14 202/783] wifi: rtw89: coex: Fix coexistence report not show as expected Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 203/783] wifi: rtw89: set force HE TB mode when connecting to 11ax AP Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 204/783] netfilter: conntrack: Bound nf_conntrack sysctl writes Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 205/783] PNP: Expand length of fixup id string Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 206/783] phy: rockchip: usbdp: Only verify link rates/lanes/voltage when the corresponding set flags are set Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 207/783] arm64/mm: Check pmd_table() in pmd_trans_huge() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 208/783] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 209/783] mmc: dw_mmc: add exynos7870 DW MMC support Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 210/783] mmc: sdhci: Disable SD card clock before changing parameters Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 211/783] usb: xhci: Dont change the status of stalled TDs on failed Stop EP Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 212/783] wifi: iwlwifi: mvm: fix setting the TK when associated Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 213/783] hwmon: (dell-smm) Increment the number of fans Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 214/783] iommu: Keep dev->iommu state consistent Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 215/783] printk: Check CON_SUSPEND when unblanking a console Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 216/783] wifi: iwlwifi: dont warn when if there is a FW error Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 217/783] wifi: iwlwifi: w/a FW SMPS mode selection Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 218/783] wifi: iwlwifi: fix debug actions order Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 219/783] wifi: iwlwifi: mark Br device not integrated Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 220/783] wifi: iwlwifi: fix the ECKV UEFI variable name Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 221/783] wifi: mac80211: dont include MLE in ML reconf per-STA profile Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 222/783] wifi: cfg80211: Update the link address when a link is added Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 223/783] wifi: mac80211: fix warning on disconnect during failed ML reconf Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 224/783] wifi: mac80211_hwsim: Fix MLD address translation Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 225/783] wifi: mac80211: fix U-APSD check in ML reconfiguration Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 226/783] wifi: cfg80211: allow IR in 20 MHz configurations Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 227/783] r8169: increase max jumbo packet size on RTL8125/RTL8126 Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 228/783] ipv6: save dontfrag in cork Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 229/783] drm/amd/display: remove minimum Dispclk and apply oem panel timing Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 230/783] drm/amd/display: calculate the remain segments for all pipes Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 231/783] drm/amd/display: not abort link train when bw is low Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 232/783] drm/amd/display: Fix incorrect DPCD configs while Replay/PSR switch Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 233/783] gfs2: Check for empty queue in run_queue Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 234/783] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 235/783] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 236/783] badblocks: Fix a nonsense WARN_ON() which checks whether a u64 variable < 0 Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 237/783] block: acquire q->limits_lock while reading sysfs attributes Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 238/783] coresight-etb10: change etb_drvdata spinlocks type to raw_spinlock_t Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 239/783] coresight: change coresight_trace_id_maps lock " Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 240/783] iommu/vt-d: Check if SVA is supported when attaching the SVA domain Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 241/783] iommu/amd/pgtbl_v2: Improve error handling Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 242/783] fs/pipe: Limit the slots in pipe_resize_ring() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 243/783] cpufreq: tegra186: Share policy per cluster Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 244/783] watchdog: s3c2410_wdt: Fix PMU register bits for ExynosAutoV920 SoC Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 245/783] watchdog: aspeed: Update bootstatus handling Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 246/783] PCI: endpoint: pci-epf-test: Fix double free that causes kernel to oops Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 247/783] misc: pci_endpoint_test: Give disabled BARs a distinct error code Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 248/783] selftests: pci_endpoint: Skip disabled BARs Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 249/783] crypto: lzo - Fix compression buffer overrun Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 250/783] crypto: mxs-dcp - Only set OTP_KEY bit for OTP key Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 251/783] drm/amdkfd: Set per-process flags only once for gfx9/10/11/12 Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 252/783] drm/amdkfd: Set per-process flags only once cik/vi Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 253/783] drm/amdkfd: clear F8_MODE for gfx950 Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 254/783] drm/amdgpu: increase RAS bad page threshold Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 255/783] drm/amdgpu: Fix missing drain retry fault the last entry Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 256/783] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 257/783] arm64: tegra: Resize aperture for the IGX PCIe C5 slot Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 258/783] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 259/783] ALSA: seq: Improve data consistency at polling Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 260/783] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 261/783] rseq: Fix segfault on registration when rseq_cs is non-zero Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.14 262/783] rtc: ds1307: stop disabling alarms on probe Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 263/783] ieee802154: ca8210: Use proper setters and getters for bitwise types Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 264/783] drm/xe: Nuke VMs mapping upon close Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 265/783] drm/xe: Retry BO allocation Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 266/783] soc: samsung: include linux/array_size.h where needed Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 267/783] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 268/783] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 269/783] media: cec: use us_to_ktime() where appropriate Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 270/783] usb: xhci: set page size to the xHCI-supported size Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 271/783] dm cache: prevent BUG_ON by blocking retries on failed device resumes Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 272/783] soc: mediatek: mtk-mutex: Add DPI1 SOF/EOF to MT8188 mutex tables Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 273/783] orangefs: Do not truncate file size Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 274/783] drm/gem: Test for imported GEM buffers with helper Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 275/783] net: phylink: use pl->link_interface in phylink_expects_phy() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 276/783] blk-throttle: dont take carryover for prioritized processing of metadata Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 277/783] remoteproc: qcom_wcnss: Handle platforms with only single power domain Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 278/783] drm/xe: Disambiguate GMDID-based IP names Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 279/783] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 280/783] drm/amdgpu: Reinit FW shared flags on VCN v5.0.1 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 281/783] drm/amd/display: Ensure DMCUB idle before reset on DCN31/DCN35 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 282/783] drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 283/783] drm/amd/display: Fix DMUB reset sequence for DCN401 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 284/783] drm/amd/display: Fix p-state type when p-state is unsupported Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 285/783] drm/amd/display: Request HW cursor on DCN3.2 with SubVP Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 286/783] drm/amdgpu: Avoid HDP flush on JPEG v5.0.1 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 287/783] drm/amdgpu: Add offset normalization in VCN v5.0.1 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 288/783] perf/core: Clean up perf_try_init_event() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 289/783] media: cx231xx: set device_caps for 417 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 290/783] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 291/783] rcu: Fix get_state_synchronize_rcu_full() GP-start detection Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 292/783] drm/msm/dpu: Set possible clones for all encoders Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 293/783] net: ethernet: ti: cpsw_new: populate netdev of_node Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 294/783] eth: fbnic: Prepend TSENE FW fields with FBNIC_FW Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 295/783] net: phy: nxp-c45-tja11xx: add match_phy_device to TJA1103/TJA1104 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 296/783] dpll: Add an assertion to check freq_supported_num Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 297/783] ublk: enforce ublks_max only for unprivileged devices Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 298/783] iommufd: Disallow allocating nested parent domain with fault ID Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 299/783] media: imx335: Set vblank immediately Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 300/783] net: pktgen: fix mpls maximum labels list parsing Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 301/783] perf/core: Fix perf_mmap() failure path Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 302/783] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 303/783] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 304/783] scsi: logging: Fix scsi_logging_level bounds Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 305/783] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 306/783] ipv4: fib: Hold rtnl_net_lock() in ip_rt_ioctl() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 307/783] drm/rockchip: vop2: Add uv swap for cluster window Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 308/783] block: mark bounce buffering as incompatible with integrity Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 309/783] null_blk: generate null_blk configfs features string Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 310/783] ublk: complete command synchronously on error Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 311/783] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 312/783] media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 313/783] clk: imx8mp: inform CCF of maximum frequency of clocks Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 314/783] PM: sleep: Suppress sleeping parent warning in special case Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 315/783] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 316/783] hwmon: (acpi_power_meter) Fix the fake power alarm reporting Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 317/783] hwmon: (gpio-fan) Add missing mutex locks Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 318/783] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 319/783] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 320/783] fpga: altera-cvp: Increase credit timeout Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 321/783] perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.14 322/783] soc: apple: rtkit: Use high prio work queue Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 323/783] soc: apple: rtkit: Implement OSLog buffers properly Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 324/783] wifi: ath12k: Report proper tx completion status to mac80211 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 325/783] PCI: brcmstb: Expand inbound window size up to 64GB Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 326/783] PCI: brcmstb: Add a softdep to MIP MSI-X driver Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 327/783] firmware: arm_ffa: Set dma_mask for ffa devices Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 328/783] drm/xe/vf: Retry sending MMIO request to GUC on timeout error Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 329/783] drm/xe/pf: Create a link between PF and VF devices Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 330/783] net/mlx5: Avoid report two health errors on same syndrome Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 331/783] selftests/net: have `gro.sh -t` return a correct exit code Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 332/783] driver core: faux: only create the device if probe() succeeds Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 333/783] pinctrl: sophgo: avoid to modify untouched bit when setting cv1800 pinconf Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 334/783] drm/amdkfd: KFD release_work possible circular locking Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 335/783] drm/xe: xe_gen_wa_oob: replace program_invocation_short_name Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 336/783] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 337/783] accel/amdxdna: Check interrupt register before mailbox_rx_worker exits Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 338/783] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 339/783] net: xgene-v2: remove incorrect ACPI_PTR annotation Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 340/783] dmaengine: ti: k3-udma-glue: Drop skip_fdq argument from k3_udma_glue_reset_rx_chn Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 341/783] wifi: rtw89: Parse channel from IE to correct invalid hardware reports during scanning Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 342/783] bonding: report duplicate MAC address in all situations Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 343/783] tcp: be less liberal in TSEcr received while in SYN_RECV state Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 344/783] pinctrl: qcom: msm8917: Add MSM8937 wsa_reset pin Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 345/783] wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 346/783] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 347/783] bpf: Search and add kfuncs in struct_ops prologue and epilogue Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 348/783] Octeontx2-af: RPM: Register driver with PCI subsys IDs Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 349/783] x86/build: Fix broken copy command in genimage.sh when making isoimage Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 350/783] drm/amd/display: handle max_downscale_src_width fail check Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 351/783] drm/amd/display: fix dcn4x init failed Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 352/783] drm/amd/display: fix check for identity ratio Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 353/783] drm/amd/display: Fix mismatch type comparison Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 354/783] drm/amd/display: Add opp recout adjustment Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 355/783] drm/amd/display: Fix mismatch type comparison in custom_float Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 356/783] ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 357/783] ASoC: mediatek: mt8188: Add reference for dmic clocks Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 358/783] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 359/783] vhost-scsi: Return queue full for page alloc failures during copy Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 360/783] vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 361/783] cpuidle: menu: Avoid discarding useful information Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 362/783] media: adv7180: Disable test-pattern control on adv7180 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 363/783] media: tc358746: improve calculation of the D-PHY timing registers Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 364/783] net/mlx5e: Add correct match to check IPSec syndromes for switchdev mode Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 365/783] scsi: mpi3mr: Update timestamp only for supervisor IOCs Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 366/783] loop: check in LO_FLAGS_DIRECT_IO in loop_default_blocksize Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 367/783] net: stmmac: Correct usage of maximum queue number macros Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 368/783] libbpf: Fix out-of-bound read Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 369/783] virtio: break and reset virtio devices on device_shutdown() Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 370/783] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 371/783] gpiolib: sanitize the return value of gpio_chip::set_config() Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 372/783] scsi: scsi_debug: First fixes for tapes Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 373/783] bpf: arm64: Silence "UBSAN: negation-overflow" warning Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 374/783] clk: sunxi-ng: h616: Reparent GPU clock during frequency changes Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 375/783] net/mlx5: Change POOL_NEXT_SIZE define value and make it global Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 376/783] x86/kaslr: Reduce KASLR entropy on most x86 systems Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 377/783] crypto: ahash - Set default reqsize from ahash_alg Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 378/783] crypto: skcipher - Zap type in crypto_alloc_sync_skcipher Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 379/783] net: ipv6: Init tunnel link-netns before registering dev Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 380/783] rtnetlink: Lookup device in target netns when creating link Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 381/783] drm/xe/oa: Ensure that polled read returns latest data Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.14 382/783] MIPS: Use arch specific syscall name match function Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 383/783] drm/amdgpu: remove all KFD fences from the BO on release Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 384/783] x86/mm: Make MMU_GATHER_RCU_TABLE_FREE unconditional Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 385/783] x86/locking: Use ALT_OUTPUT_SP() for percpu_{,try_}cmpxchg{64,128}_op() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 386/783] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 387/783] pps: generators: replace copy of pps-gen info struct with const pointer Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 388/783] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 389/783] clocksource: mips-gic-timer: Enable counter when CPUs start Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 390/783] PCI: epf-mhi: Update device ID for SA8775P Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 391/783] scsi: mpt3sas: Send a diag reset if target reset fails Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 392/783] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 393/783] wifi: rtw88: Fix rtw_init_ht_cap() " Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 394/783] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 395/783] wifi: rtw88: Fix rtw_mac_power_switch() for RTL8814AU Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 396/783] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 397/783] wifi: rtw89: fw: get sb_sel_ver via get_unaligned_le32() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 398/783] wifi: rtw89: fw: add blacklist to avoid obsolete secure firmware Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 399/783] wifi: rtw89: 8922a: fix incorrect STA-ID in EHT MU PPDU Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 400/783] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 401/783] power: supply: axp20x_battery: Update temp sensor for AXP717 from device tree Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 402/783] EDAC/ie31200: work around false positive build warning Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 403/783] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 404/783] netdevsim: call napi_schedule from a timer context Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 405/783] mfd: axp20x: AXP717: Add AXP717_TS_PIN_CFG to writeable regs Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 406/783] eeprom: ee1004: Check chip before probing Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 407/783] irqchip/riscv-imsic: Separate next and previous pointers in IMSIC vector Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 408/783] drm/xe/client: Skip show_run_ticks if unable to read timestamp Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 409/783] drm/amd/pm: Fetch current power limit from PMFW Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 410/783] drm/amd/display: Add support for disconnected eDP streams Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 411/783] drm/amd/display: Guard against setting dispclk low when active Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 412/783] drm/amd/display: Fix BT2020 YCbCr limited/full range input Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 413/783] drm/amd/display: Read LTTPR ALPM caps during link cap retrieval Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 414/783] Revert "drm/amd/display: Request HW cursor on DCN3.2 with SubVP" Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 415/783] drm/amd/display: Dont treat wb connector as physical in create_validate_stream_for_sink Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 416/783] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 417/783] RDMA/core: Fix best page size finding when it can cross SG entries Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 418/783] pmdomain: imx: gpcv2: use proper helper for property detection Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 419/783] can: c_can: Use of_property_present() to test existence of DT property Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 420/783] bpf: dont do clean_live_states when state->loop_entry->branches > 0 Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 421/783] bpf: copy_verifier_state() should copy loop_entry field Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 422/783] eth: mlx4: dont try to complete XDP frames in netpoll Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 423/783] PCI: Fix old_size lower bound in calculate_iosize() too Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 424/783] ACPI: HED: Always initialize before evged Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 425/783] vxlan: Join / leave MC group after remote changes Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 426/783] x86/boot: Disable stack protector for early boot code Greg Kroah-Hartman
2025-05-28 17:52   ` Brian Gerst
2025-05-29  6:34     ` Greg Kroah-Hartman
2025-05-29  6:59       ` Ard Biesheuvel
2025-05-29  7:55         ` Greg Kroah-Hartman
2025-05-29 16:17       ` Brian Gerst
2025-05-27 16:23 ` [PATCH 6.14 427/783] posix-timers: Invoke cond_resched() during exit_itimers() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 428/783] hrtimers: Replace hrtimer_clock_to_base_table with switch-case Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 429/783] irqchip/riscv-imsic: Set irq_set_affinity() for IMSIC base Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 430/783] media: test-drivers: vivid: dont call schedule in loop Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 431/783] bpf: Make every prog keep a copy of ctx_arg_info Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 432/783] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 433/783] net/mlx5: Apply rate-limiting to high temperature warning Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 434/783] firmware: arm_ffa: Reject higher major version as incompatible Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 435/783] firmware: arm_ffa: Handle the presence of host partition in the partition info Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 436/783] firmware: xilinx: Dont send linux address to get fpga config get status Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 437/783] io_uring: use IO_REQ_LINK_FLAGS more Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 438/783] io_uring: sanitise ring params earlier Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 439/783] ASoC: ops: Enforce platform maximum on initial value Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 440/783] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 441/783] ASoC: tas2764: Mark SW_RESET as volatile Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.14 442/783] ASoC: tas2764: Power up/down amp on mute ops Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 443/783] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 444/783] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 445/783] smack: recognize ipv4 CIPSO w/o categories Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 446/783] drm/xe/pf: Release all VFs configs on device removal Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 447/783] smack: Revert "smackfs: Added check catlen" Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 448/783] kunit: tool: Use qboot on QEMU x86_64 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 449/783] media: i2c: imx219: Correct the minimum vblanking value Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 450/783] media: v4l: Memset argument to 0 before calling get_mbus_config pad op Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 451/783] media: stm32: csi: use ARRAY_SIZE to search D-PHY table Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 452/783] media: stm32: csi: add missing pm_runtime_put on error Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 453/783] media: i2c: ov2740: Free control handler on error path Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 454/783] bnxt_en: Set NPAR 1.2 support when registering with firmware Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 455/783] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 456/783] drm/xe: Stop ignoring errors from xe_ttm_stolen_mgr_init() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 457/783] drm/xe: Fix xe_tile_init_noalloc() error propagation Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 458/783] clk: qcom: ipq5018: allow it to be bulid on arm32 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 459/783] accel/amdxdna: Refactor hardware context destroy routine Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 460/783] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 461/783] drm/xe/debugfs: fixed the return value of wedged_mode_set Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 462/783] drm/xe/debugfs: Add missing xe_pm_runtime_put in wedge_mode_set Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 463/783] x86/ibt: Handle FineIBT in handle_cfi_failure() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 464/783] x86/traps: Cleanup and robustify decode_bug() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 465/783] x86/boot: Mark start_secondary() with __noendbr Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 466/783] sched: Reduce the default slice to avoid tasks getting an extra tick Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 467/783] serial: sh-sci: Update the suspend/resume support Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 468/783] pinctrl: renesas: rzg2l: Add suspend/resume support for pull up/down Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 469/783] drm/xe/display: Remove hpd cancel work sync from runtime pm path Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 470/783] phy: phy-rockchip-samsung-hdptx: Swap the definitions of LCPLL_REF and ROPLL_REF Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 471/783] phy: core: dont require set_mode() callback for phy_get_mode() to work Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 472/783] phy: exynos5-usbdrd: fix EDS distribution tuning (gs101) Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 473/783] soundwire: amd: change the soundwire wake enable/disable sequence Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 474/783] soundwire: cadence_master: set frame shape and divider based on actual clk freq Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 475/783] jbd2: Avoid long replay times due to high number or revoke blocks Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 476/783] net: stmmac: dwmac-loongson: Set correct {tx,rx}_fifo_size Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 477/783] scsi: usb: Rename the RESERVE and RELEASE constants Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 478/783] drm/amdgpu/mes11: fix set_hw_resources_1 calculation Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 479/783] drm/amdkfd: fix missing L2 cache info in topology Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 480/783] drm/amdgpu: Set snoop bit for SDMA for MI series Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 481/783] drm/amd/display: pass calculated dram_speed_mts to dml2 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 482/783] drm/amd/display: remove TF check for LLS policy Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 483/783] drm/amd/display: Dont try AUX transactions on disconnected link Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 484/783] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 485/783] drm/amd/pm: Skip P2S load for SMU v13.0.12 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 486/783] drm/amd/display: Support multiple options during psr entry Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 487/783] Revert "drm/amd/display: Exit idle optimizations before attempt to access PHY" Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 488/783] drm/amd/display: Fixes for mcache programming in DML21 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 489/783] drm/amd/display: Ammend DCPG IP control sequences to align with HW guidance Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 490/783] drm/amd/display: Account For OTO Prefetch Bandwidth When Calculating Urgent Bandwidth Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 491/783] drm/amd/display: Update CR AUX RD interval interpretation Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 492/783] drm/amd/display: Initial psr_version with correct setting Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 493/783] drm/amdgpu/gfx10: Add cleaner shader for GFX10.1.10 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 494/783] drm/amdgpu: Skip err_count sysfs creation on VF unsupported RAS blocks Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 495/783] amdgpu/soc15: enable asic reset for dGPU in case of suspend abort Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 496/783] drm/amd/display: Reverse the visual confirm recouts Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 497/783] drm/amd/display: Increase block_sequence array size Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 498/783] drm/amd/display: Use Nominal vBlank If Provided Instead Of Capping It Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 499/783] drm/amd/display: Populate register address for dentist for dcn401 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 500/783] drm/amdgpu: Use active umc info from discovery Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 501/783] drm/amdgpu: enlarge the VBIOS binary size limit Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.14 502/783] drm/amdkfd: Have kfd driver use same PASID values from graphic driver Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 503/783] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 504/783] scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 505/783] net/mlx5: XDP, Enable TX side XDP multi-buffer support Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 506/783] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 507/783] net/mlx5e: set the tx_queue_len for pfifo_fast Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 508/783] net/mlx5e: reduce rep rxq depth to 256 for ECPF Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 509/783] net/mlx5e: reduce the max log mpwrq sz for ECPF and reps Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 510/783] drm/v3d: Add clock handling Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 511/783] xfrm: prevent high SEQ input in non-ESN mode Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 512/783] iio: adc: ad7606: protect register access Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 513/783] wifi: ath12k: Enable MLO setup ready and teardown commands for single split-phy device Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 514/783] wifi: ath12k: use arvif instead of link_conf in ath12k_mac_set_key() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 515/783] wifi: ath12k: fix the ampdu id fetch in the HAL_RX_MPDU_START TLV Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 516/783] wifi: ath12k: Update the peer id in PPDU end user stats TLV Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 517/783] mptcp: pm: userspace: flags: clearer msg if no remote addr Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 518/783] wifi: iwlwifi: use correct IMR dump variable Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 519/783] wifi: iwlwifi: dont warn during reprobe Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 520/783] wifi: mac80211: always send max agg subframe num in strict mode Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 521/783] wifi: mac80211: dont unconditionally call drv_mgd_complete_tx() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 522/783] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 523/783] wifi: mac80211: set ieee80211_prep_tx_info::link_id upon Auth Rx Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 524/783] wifi: mac80211: add HT and VHT basic set verification Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 525/783] wifi: mac80211: Drop cooked monitor support Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 526/783] net: fec: Refactor MAC reset to function Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 527/783] powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 528/783] powerpc/pseries/iommu: create DDW for devices with DMA mask less than 64-bits Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 529/783] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 530/783] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 531/783] r8152: add vendor/device ID pair for Dell Alienware AW1022z Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 532/783] s390/crash: Use note name macros Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 533/783] iio: adc: ad7944: dont use storagebits for sizing Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 534/783] igc: Avoid unnecessary link down event in XDP_SETUP_PROG process Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 535/783] pstore: Change kmsg_bytes storage size to u32 Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 536/783] leds: trigger: netdev: Configure LED blink interval for HW offload Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 537/783] ext4: dont write back data before punch hole in nojournal mode Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 538/783] ext4: remove writable userspace mappings before truncating page cache Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 539/783] wifi: rtw88: Fix rtw_update_sta_info() for RTL8814AU Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 540/783] wifi: rtw88: Extend rtw_fw_send_ra_info() " Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 541/783] wifi: rtw88: Fix download_firmware_validate() " Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 542/783] wifi: rtw88: Fix __rtw_download_firmware() " Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 543/783] wifi: rtw89: coex: Assign value over than 0 to avoid firmware timer hang Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 544/783] wifi: rtw89: fw: validate multi-firmware header before getting its size Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 545/783] wifi: rtw89: fw: validate multi-firmware header before accessing Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 546/783] wifi: rtw89: call power_on ahead before selecting firmware Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 547/783] iio: dac: ad3552r-hs: use instruction mode for configuration Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 548/783] iio: dac: adi-axi-dac: add bus mode setup Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 549/783] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 550/783] netdevsim: allow normal queue reset while down Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 551/783] net: page_pool: avoid false positive warning if NAPI was never added Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 552/783] tools/power turbostat: Clustered Uncore MHz counters should honor show/hide options Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 553/783] hwmon: (xgene-hwmon) use appropriate type for the latency value Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 554/783] drm/xe: Fix PVC RPe and RPa information Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 555/783] f2fs: introduce f2fs_base_attr for global sysfs entries Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 556/783] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 557/783] media: qcom: camss: Add default case in vfe_src_pad_code Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 558/783] drm/rockchip: vop2: Improve display modes handling on RK3588 HDMI0 Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 559/783] eth: fbnic: set IFF_UNICAST_FLT to avoid enabling promiscuous mode when adding unicast addrs Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 560/783] tools: ynl-gen: dont output external constants Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 561/783] net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.14 562/783] cpufreq: amd-pstate: Remove unnecessary driver_lock in set_boost Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 563/783] vxlan: Annotate FDB data races Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 564/783] ipv4: ip_gre: Fix set but not used warning in ipgre_err() if IPv4-only Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 565/783] r8169: dont scan PHY addresses > 0 Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 566/783] net: flush_backlog() small changes Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 567/783] bridge: mdb: Allow replace of a host-joined group Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 568/783] ice: init flow director before RDMA Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 569/783] ice: treat dyn_allowed only as suggestion Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 570/783] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 571/783] rcu: handle unstable rdp in rcu_read_unlock_strict() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 572/783] rcu: fix header guard for rcu_all_qs() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 573/783] perf: Avoid the read if the count is already updated Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 574/783] ice: count combined queues using Rx/Tx count Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 575/783] drm/xe/relay: Dont use GFP_KERNEL for new transactions Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 576/783] net/mana: fix warning in the writer of client oob Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 577/783] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 578/783] scsi: lpfc: Ignore ndlp rport mismatch in dev_loss_tmo callbk Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 579/783] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 580/783] scsi: lpfc: Reduce log message generation during ELS ring clean up Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 581/783] scsi: st: Restore some drive settings after reset Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 582/783] wifi: ath12k: Avoid napi_sync() before napi_enable() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 583/783] HID: usbkbd: Fix the bit shift number for LED_KANA Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 584/783] arm64: zynqmp: add clock-output-names property in clock nodes Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 585/783] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 586/783] ASoC: rt722-sdca: Add some missing readable registers Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 587/783] irqchip/riscv-aplic: Add support for hart indexes Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 588/783] dm vdo vio-pool: allow variable-sized metadata vios Greg Kroah-Hartman
2025-05-27 19:08   ` Matthew Sakai
2025-05-29  6:36     ` Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 589/783] dm vdo indexer: prevent unterminated string warning Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 590/783] dm vdo: use a short static string for thread name prefix Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 591/783] drm/ast: Find VBIOS mode from regular display size Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 592/783] bpf: Use kallsyms to find the function name of a struct_opss stub function Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 593/783] bpftool: Fix readlink usage in get_fd_type Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 594/783] firmware: arm_scmi: Relax duplicate name constraint across protocol ids Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 595/783] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 596/783] perf/amd/ibs: Fix ->config to sample period calculation for OP PMU Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 597/783] clk: renesas: rzg2l-cpg: Refactor Runtime PM clock validation Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 598/783] wifi: rtl8xxxu: retry firmware download on error Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 599/783] wifi: rtw88: Dont use static local variable in rtw8822b_set_tx_power_index_by_rate Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 600/783] wifi: rtw89: add wiphy_lock() to work that isnt held wiphy_lock() yet Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 601/783] spi: zynqmp-gqspi: Always acknowledge interrupts Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 602/783] regulator: ad5398: Add device tree support Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 603/783] wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 604/783] accel/qaic: Mask out SR-IOV PCI resources Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 605/783] drm/xe/pf: Reset GuC VF config when unprovisioning critical resource Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 606/783] wifi: ath9k: return by of_get_mac_address Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 607/783] wifi: ath12k: Fetch regdb.bin file from board-2.bin Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 608/783] drm/xe/pf: Move VFs reprovisioning to worker Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 609/783] wifi: ath12k: Fix end offset bit definition in monitor ring descriptor Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 610/783] wifi: ath12k: report station mode receive rate for IEEE 802.11be Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 611/783] wifi: ath12k: report station mode transmit rate Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 612/783] drm: bridge: adv7511: fill stream capabilities Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 613/783] drm/nouveau: fix the broken marco GSP_MSG_MAX_SIZE Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 614/783] wifi: ath11k: Use dma_alloc_noncoherent for rx_tid buffer allocation Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 615/783] drm/ast: Hide Gens 1 to 3 TX detection in branch Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 616/783] drm/xe: Move suballocator init to after display init Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 617/783] drm/xe: Do not attempt to bootstrap VF in execlists mode Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 618/783] wifi: rtw89: coex: Separated Wi-Fi connecting event from Wi-Fi scan event Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 619/783] wifi: rtw89: coex: Add protect to avoid A2DP lag while Wi-Fi connecting Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 620/783] drm/xe/sa: Always call drm_suballoc_manager_fini() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 621/783] drm/xe/vf: Perform early GT MMIO initialization to read GMDID Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.14 622/783] drm/xe: Always setup GT MMIO adjustment data Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 623/783] drm/xe/guc: Drop error messages about missing GuC logs Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 624/783] drm/xe: Reject BO eviction if BO is bound to current VM Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 625/783] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 626/783] drm/buddy: fix issue that force_merge cannot free all roots Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 627/783] drm/xe: Add locks in gtidle code Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 628/783] drm/panel-edp: Add Starry 116KHD024006 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 629/783] drm: Add valid clones check Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 630/783] i3c: master: svc: Fix implicit fallthrough in svc_i3c_master_ibi_work() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 631/783] ASoC: sma1307: Fix error handling in sma1307_setting_loaded() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 632/783] pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 633/783] watchdog: aspeed: fix 64-bit division Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 634/783] drm/amdkfd: Correct F8_MODE for gfx950 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 635/783] drm/gem: Internally test import_attach for imported objects Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 636/783] virtgpu: dont reset on shutdown Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 637/783] x86/mm/init: Handle the special case of device private pages in add_pages(), to not increase max_pfn and trigger dma_addressing_limited() bounce buffers Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 638/783] bpf: abort verification if env->cur_state->loop_entry != NULL Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 639/783] ipv6: remove leftover ip6 cookie initializer Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 640/783] serial: sh-sci: Save and restore more registers Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 641/783] drm/amd/display: Exit idle optimizations before accessing PHY Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 642/783] drm/amdkfd: Fix error handling for missing PASID in kfd_process_device_init_vm Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 643/783] drm/amdkfd: Fix pasid value leak Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 644/783] wifi: mac80211: Add counter for all monitor interfaces Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 645/783] HID: Kconfig: Add LEDS_CLASS_MULTICOLOR dependency to HID_LOGITECH Greg Kroah-Hartman
2025-05-30 13:44   ` Jörg-Volker Peetz
2025-05-30 14:08     ` Greg Kroah-Hartman
2025-05-30 14:09       ` Greg Kroah-Hartman
2025-05-30 14:45         ` Jörg-Volker Peetz
2025-05-30 14:45           ` Jörg-Volker Peetz
2025-05-30 14:56           ` Kate Hsuan
2025-05-30 15:38             ` Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 646/783] net-sysfs: restore behavior for not running devices Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 647/783] ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 648/783] book3s64/radix: Fix compile errors when CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=n Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 649/783] pinctrl: meson: define the pull up/down resistor value as 60 kOhm Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 650/783] smb: server: smb2pdu: check return value of xa_store() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 651/783] platform/x86/intel: hid: Add Pantherlake support Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 652/783] platform/x86: asus-wmi: Disable OOBE state after resume from hibernation Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 653/783] platform/x86: ideapad-laptop: add support for some new buttons Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 654/783] ASoC: cs42l43: Disable headphone clamps during type detection Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 655/783] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 656/783] ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 657/783] drm/ttm: fix the warning for hit_low and evict_low Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 658/783] nvme-pci: add quirks for device 126f:1001 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 659/783] nvme-pci: add quirks for WDC Blue SN550 15b7:5009 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 660/783] ALSA: usb-audio: Fix duplicated name in MIDI substream names Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 661/783] nvmet-tcp: dont restore null sk_state_change Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 662/783] io_uring/fdinfo: annotate racy sq/cq head/tail reads Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 663/783] cifs: Fix and improve cifs_query_path_info() and cifs_query_file_info() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 664/783] cifs: Fix changing times and read-only attr over SMB1 smb_set_file_info() function Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 665/783] ASoC: intel/sdw_utils: Add volume limit to cs42l43 speakers Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 666/783] ASoC: intel/sdw_utils: Add volume limit to cs35l56 speakers Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 667/783] iio: accel: fxls8962af: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 668/783] iio: adc: qcom-spmi-iadc: " Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 669/783] iio: imu: st_lsm6dsx: " Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 670/783] btrfs: compression: adjust cb->compressed_folios allocation type Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 671/783] btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 672/783] btrfs: handle empty eb->folios in num_extent_folios() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 673/783] btrfs: avoid NULL pointer dereference if no valid csum tree Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 674/783] tools: ynl-gen: validate 0 len strings from kernel Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 675/783] block: only update request sector if needed Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 676/783] wifi: iwlwifi: add support for Killer on MTL Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 677/783] x86/Kconfig: make CFI_AUTO_DEFAULT depend on !RUST or Rust >= 1.88 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 678/783] xenbus: Allow PVH dom0 a non-local xenstore Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 679/783] drm/amd/display: Call FP Protect Before Mode Programming/Mode Support Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 680/783] __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 681/783] soundwire: bus: Fix race on the creation of the IRQ domain Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.14 682/783] espintcp: fix skb leaks Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 683/783] espintcp: remove encap socket caching to avoid reference leak Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 684/783] xfrm: Fix UDP GRO handling for some corner cases Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 685/783] dmaengine: idxd: Fix allowing write() from different address spaces Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 686/783] x86/sev: Fix operator precedence in GHCB_MSR_VMPL_REQ_LEVEL macro Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 687/783] kernel/fork: only call untrack_pfn_clear() on VMAs duplicated for fork() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 688/783] remoteproc: qcom_wcnss: Fix on platforms without fallback regulators Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 689/783] clk: sunxi-ng: d1: Add missing divider for MMC mod clocks Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 690/783] xfrm: Sanitize marks before insert Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 691/783] dmaengine: idxd: Fix ->poll() return value Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 692/783] dmaengine: fsl-edma: Fix return code for unhandled interrupts Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 693/783] driver core: Split devres APIs to device/devres.h Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 694/783] devres: Introduce devm_kmemdup_array() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 695/783] ASoC: SOF: Intel: hda: Fix UAF when reloading module Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 696/783] irqchip/riscv-imsic: Start local sync timer on correct CPU Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 697/783] perf/x86/intel: Fix segfault with PEBS-via-PT with sample_freq Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 698/783] Bluetooth: L2CAP: Fix not checking l2cap_chan security level Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 699/783] Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 700/783] ptp: ocp: Limit signal/freq counts in summary output functions Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 701/783] bridge: netfilter: Fix forwarding of fragmented packets Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 702/783] mr: consolidate the ipmr_can_free_table() checks Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 703/783] ice: fix vf->num_mac count with port representors Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 704/783] ice: Fix LACP bonds without SRIOV environment Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 705/783] idpf: fix null-ptr-deref in idpf_features_check Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 706/783] loop: dont require ->write_iter for writable files in loop_configure Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 707/783] pinctrl: qcom: switch to devm_register_sys_off_handler() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 708/783] net: dwmac-sun8i: Use parsed internal PHY address instead of 1 Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 709/783] net: lan743x: Restore SGMII CTRL register on resume Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 710/783] xsk: Bring back busy polling support in XDP_COPY Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 711/783] io_uring: fix overflow resched cqe reordering Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 712/783] idpf: fix idpf_vport_splitq_napi_poll() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 713/783] sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 714/783] octeontx2-pf: use xdp_return_frame() to free xdp buffers Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 715/783] octeontx2-pf: Add AF_XDP non-zero copy support Greg Kroah-Hartman
2025-05-27 16:28 ` Greg Kroah-Hartman [this message]
2025-05-27 16:28 ` [PATCH 6.14 717/783] octeontx2-pf: Avoid adding dcbnl_ops for LBK and SDP vf Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 718/783] net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 719/783] octeontx2-af: Set LMT_ENA bit for APR table entries Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 720/783] octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 721/783] clk: s2mps11: initialise clk_hw_onecell_data::num before accessing ::hws[] in probe() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 722/783] crypto: algif_hash - fix double free in hash_accept Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 723/783] padata: do not leak refcount in reorder_work Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 724/783] can: slcan: allow reception of short error messages Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 725/783] can: bcm: add locking for bcm_op runtime updates Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 726/783] can: bcm: add missing rcu read protection for procfs content Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 727/783] ASoC: SOF: ipc4-control: Use SOF_CTRL_CMD_BINARY as numid for bytes_ext Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 728/783] ASoC: SOF: Intel: hda-bus: Use PIO mode on ACE2+ platforms Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 729/783] ASoc: SOF: topology: connect DAI to a single DAI link Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 730/783] ASoC: SOF: ipc4-pcm: Delay reporting is only supported for playback direction Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 731/783] ALSA: pcm: Fix race of buffer access at PCM OSS layer Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 732/783] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10 Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 733/783] llc: fix data loss when reading from a socket in llc_ui_recvmsg() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 734/783] can: kvaser_pciefd: Continue parsing DMA buf after dropped RX Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 735/783] can: kvaser_pciefd: Fix echo_skb race Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 736/783] io_uring/net: only retry recv bundle for a full transfer Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 737/783] net: dsa: microchip: linearize skb for tail-tagging switches Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 738/783] vmxnet3: update MTU after device quiesce Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 739/783] mmc: sdhci_am654: Add SDHCI_QUIRK2_SUPPRESS_V1P8_ENA quirk to am62 compatible Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 740/783] pmdomain: renesas: rcar: Remove obsolete nullify checks Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 741/783] pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.14 742/783] platform/x86: dell-wmi-sysman: Avoid buffer overflow in current_password_store() Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 743/783] thermal: intel: x86_pkg_temp_thermal: Fix bogus trip temperature Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 744/783] drm/edid: fixed the bug that hdr metadata was not reset Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 745/783] smb: client: Fix use-after-free in cifs_fill_dirent Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 746/783] arm64: dts: marvell: uDPU: define pinctrl state for alarm LEDs Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 747/783] smb: client: Reset all search buffer pointers when releasing buffer Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 748/783] Revert "drm/amd: Keep display off while going into S4" Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 749/783] Input: xpad - add more controllers Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 750/783] Input: synaptics-rmi - fix crash with unsupported versions of F34 Greg Kroah-Hartman
2025-05-27 20:42   ` Dmitry Torokhov
2025-05-29  6:35     ` Greg Kroah-Hartman
2025-05-29 21:57       ` Dmitry Torokhov
2025-05-27 16:29 ` [PATCH 6.14 751/783] alloc_tag: allocate percpu counters for module tags dynamically Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 752/783] highmem: add folio_test_partial_kmap() Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 753/783] kasan: avoid sleepable page allocation from atomic context Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 754/783] memcg: always call cond_resched() after fn() Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 755/783] mm/hugetlb: fix kernel NULL pointer dereference when replacing free hugetlb folios Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 756/783] mm/page_alloc.c: avoid infinite retries caused by cpuset race Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 757/783] module: release codetag section when module load fails Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 758/783] taskstats: fix struct taskstats breaks backward compatibility since version 15 Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 759/783] mm: mmap: map MAP_STACK to VM_NOHUGEPAGE only if THP is enabled Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 760/783] mm: fix VM_UFFD_MINOR == VM_SHADOW_STACK on USERFAULTFD=y && ARM64_GCS=y Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 761/783] mm: vmalloc: actually use the in-place vrealloc region Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 762/783] mm: vmalloc: only zero-init on vrealloc shrink Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 763/783] octeontx2: hide unused label Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 764/783] wifi: mac80211: restore monitor for outgoing frames Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 765/783] nilfs2: fix deadlock warnings caused by lock dependency in init_nilfs() Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 766/783] Bluetooth: btmtksdio: Check function enabled before doing close Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 767/783] Bluetooth: btmtksdio: Do close if SDIO card removed without close Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 768/783] Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection" Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 769/783] ksmbd: fix stream write failure Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 770/783] platform/x86: think-lmi: Fix attribute name usage for non-compliant items Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 771/783] spi: use container_of_cont() for to_spi_device() Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 772/783] spi: spi-fsl-dspi: restrict register range for regmap access Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 773/783] spi: spi-fsl-dspi: Halt the module after a new message transfer Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 774/783] spi: spi-fsl-dspi: Reset SR flags before sending a new message Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 775/783] drm/xe: Use xe_mmio_read32() to read mtcfg register Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 776/783] err.h: move IOMEM_ERR_PTR() to err.h Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 777/783] drm/i915/dp: Fix determining SST/MST mode during MTP TU state computation Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 778/783] drm/amdgpu/vcn4.0.5: split code along instances Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 779/783] drm/amdgpu: read back register after written for VCN v4.0.5 Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 780/783] gcc-15: make unterminated string initialization just a warning Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 781/783] gcc-15: disable -Wunterminated-string-initialization entirely for now Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 782/783] Fix mis-uses of cc-option for warning disablement Greg Kroah-Hartman
2025-05-27 16:29 ` [PATCH 6.14 783/783] kbuild: Properly disable -Wunterminated-string-initialization for clang Greg Kroah-Hartman
2025-05-27 18:51 ` [PATCH 6.14 000/783] 6.14.9-rc1 review Florian Fainelli
2025-05-27 18:52 ` Ronald Warsow
2025-05-27 19:10 ` Naresh Kamboju
2025-05-28  8:50   ` Greg Kroah-Hartman
2025-05-27 22:14 ` Shuah Khan
2025-05-27 23:13 ` Peter Schneider
2025-05-27 23:24 ` Takeshi Ogasawara
2025-05-28  0:18 ` Miguel Ojeda
2025-05-28  6:50 ` Pavel Machek
2025-05-28  8:57 ` Ron Economos
2025-05-28  9:06 ` Christian Heusel
2025-05-28 11:26 ` Mark Brown
2025-05-28 14:52 ` Markus Reichelt
2025-05-28 19:00 ` Justin Forbes
2025-05-29 16:26 ` Hardik Garg
2025-06-04  9:40 ` Jon Hunter

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=20250527162542.272907101@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=pabeni@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=sumang@marvell.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