patches.lists.linux.dev archive mirror
 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, Yihang Li <liyihang6@hisilicon.com>,
	Damien Le Moal <damien.lemoal@opensource.wdc.com>,
	Christoph Hellwig <hch@lst.de>,
	John Garry <john.garry@huawei.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 125/373] scsi: libsas: Add struct sas_tmf_task
Date: Tue, 29 Apr 2025 18:40:02 +0200	[thread overview]
Message-ID: <20250429161128.318581987@linuxfoundation.org> (raw)
In-Reply-To: <20250429161123.119104857@linuxfoundation.org>

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

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

From: John Garry <john.garry@huawei.com>

[ Upstream commit bbfe82cdbaf84e6622ceb6f3447c8c4bb7dde7ab ]

Some of the LLDDs which use libsas have their own definition of a struct
to hold TMF info, so add a common struct for libsas.

Also add an interim force phy id field for hisi_sas driver, which will be
removed once the STP "TMF" code is factored out.

Even though some LLDDs (pm8001) use a u32 for the tag, u16 will be adequate,
as that named driver only uses tags in range [0, 1024).

Link: https://lore.kernel.org/r/1645112566-115804-8-git-send-email-john.garry@huawei.com
Tested-by: Yihang Li <liyihang6@hisilicon.com>
Tested-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: John Garry <john.garry@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Stable-dep-of: 8aa580cd9284 ("scsi: hisi_sas: Enable force phy when SATA disk directly connected")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/scsi/hisi_sas/hisi_sas.h       |  9 +--------
 drivers/scsi/hisi_sas/hisi_sas_main.c  | 22 +++++++++++-----------
 drivers/scsi/hisi_sas/hisi_sas_v1_hw.c |  2 +-
 drivers/scsi/hisi_sas/hisi_sas_v2_hw.c |  4 ++--
 drivers/scsi/hisi_sas/hisi_sas_v3_hw.c |  2 +-
 drivers/scsi/mvsas/mv_defs.h           |  5 -----
 drivers/scsi/mvsas/mv_sas.c            | 20 ++++++++++----------
 drivers/scsi/pm8001/pm8001_hwi.c       |  4 ++--
 drivers/scsi/pm8001/pm8001_sas.c       | 18 +++++++++---------
 drivers/scsi/pm8001/pm8001_sas.h       | 10 +++-------
 include/scsi/libsas.h                  |  9 +++++++++
 11 files changed, 49 insertions(+), 56 deletions(-)

diff --git a/drivers/scsi/hisi_sas/hisi_sas.h b/drivers/scsi/hisi_sas/hisi_sas.h
index 39da9f1645135..081b4e22a502f 100644
--- a/drivers/scsi/hisi_sas/hisi_sas.h
+++ b/drivers/scsi/hisi_sas/hisi_sas.h
@@ -234,13 +234,6 @@ struct hisi_sas_device {
 	spinlock_t lock; /* For protecting slots */
 };
 
-struct hisi_sas_tmf_task {
-	int force_phy;
-	int phy_id;
-	u8 tmf;
-	u16 tag_of_task_to_be_managed;
-};
-
 struct hisi_sas_slot {
 	struct list_head entry;
 	struct list_head delivery;
@@ -259,7 +252,7 @@ struct hisi_sas_slot {
 	dma_addr_t cmd_hdr_dma;
 	struct timer_list internal_abort_timer;
 	bool is_internal;
-	struct hisi_sas_tmf_task *tmf;
+	struct sas_tmf_task *tmf;
 	/* Do not reorder/change members after here */
 	void	*buf;
 	dma_addr_t buf_dma;
diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c b/drivers/scsi/hisi_sas/hisi_sas_main.c
index bb95153bd22f0..0ca80e00835cb 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
@@ -11,7 +11,7 @@
 	((!dev) || (dev->dev_type == SAS_PHY_UNUSED))
 
 static int hisi_sas_debug_issue_ssp_tmf(struct domain_device *device,
-				u8 *lun, struct hisi_sas_tmf_task *tmf);
+				u8 *lun, struct sas_tmf_task *tmf);
 static int
 hisi_sas_internal_task_abort(struct hisi_hba *hisi_hba,
 			     struct domain_device *device,
@@ -477,7 +477,7 @@ void hisi_sas_task_deliver(struct hisi_hba *hisi_hba,
 }
 
 static int hisi_sas_task_exec(struct sas_task *task, gfp_t gfp_flags,
-			      struct hisi_sas_tmf_task *tmf)
+			      struct sas_tmf_task *tmf)
 {
 	int n_elem = 0, n_elem_dif = 0, n_elem_req = 0;
 	struct domain_device *device = task->dev;
@@ -691,7 +691,7 @@ static int hisi_sas_init_device(struct domain_device *device)
 {
 	int rc = TMF_RESP_FUNC_COMPLETE;
 	struct scsi_lun lun;
-	struct hisi_sas_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	int retry = HISI_SAS_DISK_RECOVER_CNT;
 	struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
 	struct device *dev = hisi_hba->dev;
@@ -1195,7 +1195,7 @@ static void hisi_sas_tmf_timedout(struct timer_list *t)
 #define INTERNAL_ABORT_TIMEOUT		(6 * HZ)
 static int hisi_sas_exec_internal_tmf_task(struct domain_device *device,
 					   void *parameter, u32 para_len,
-					   struct hisi_sas_tmf_task *tmf)
+					   struct sas_tmf_task *tmf)
 {
 	struct hisi_sas_device *sas_dev = device->lldd_dev;
 	struct hisi_hba *hisi_hba = sas_dev->hisi_hba;
@@ -1330,7 +1330,7 @@ static int hisi_sas_softreset_ata_disk(struct domain_device *device)
 	struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
 	struct device *dev = hisi_hba->dev;
 	int s = sizeof(struct host_to_dev_fis);
-	struct hisi_sas_tmf_task tmf = {};
+	struct sas_tmf_task tmf = {};
 
 	ata_for_each_link(link, ap, EDGE) {
 		int pmp = sata_srst_pmp(link);
@@ -1364,7 +1364,7 @@ static int hisi_sas_softreset_ata_disk(struct domain_device *device)
 }
 
 static int hisi_sas_debug_issue_ssp_tmf(struct domain_device *device,
-				u8 *lun, struct hisi_sas_tmf_task *tmf)
+				u8 *lun, struct sas_tmf_task *tmf)
 {
 	struct sas_ssp_task ssp_task;
 
@@ -1469,7 +1469,7 @@ static void hisi_sas_send_ata_reset_each_phy(struct hisi_hba *hisi_hba,
 					     struct asd_sas_port *sas_port,
 					     struct domain_device *device)
 {
-	struct hisi_sas_tmf_task tmf_task = { .force_phy = 1 };
+	struct sas_tmf_task tmf_task = { .force_phy = 1 };
 	struct ata_port *ap = device->sata_dev.ap;
 	struct device *dev = hisi_hba->dev;
 	int s = sizeof(struct host_to_dev_fis);
@@ -1624,7 +1624,7 @@ static int hisi_sas_controller_reset(struct hisi_hba *hisi_hba)
 static int hisi_sas_abort_task(struct sas_task *task)
 {
 	struct scsi_lun lun;
-	struct hisi_sas_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	struct domain_device *device = task->dev;
 	struct hisi_sas_device *sas_dev = device->lldd_dev;
 	struct hisi_hba *hisi_hba;
@@ -1733,7 +1733,7 @@ static int hisi_sas_abort_task_set(struct domain_device *device, u8 *lun)
 {
 	struct hisi_hba *hisi_hba = dev_to_hisi_hba(device);
 	struct device *dev = hisi_hba->dev;
-	struct hisi_sas_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	int rc;
 
 	rc = hisi_sas_internal_task_abort(hisi_hba, device,
@@ -1868,7 +1868,7 @@ static int hisi_sas_lu_reset(struct domain_device *device, u8 *lun)
 			hisi_sas_release_task(hisi_hba, device);
 		sas_put_local_phy(phy);
 	} else {
-		struct hisi_sas_tmf_task tmf_task = { .tmf =  TMF_LU_RESET };
+		struct sas_tmf_task tmf_task = { .tmf =  TMF_LU_RESET };
 
 		rc = hisi_sas_debug_issue_ssp_tmf(device, lun, &tmf_task);
 		if (rc == TMF_RESP_FUNC_COMPLETE)
@@ -1926,7 +1926,7 @@ static int hisi_sas_clear_nexus_ha(struct sas_ha_struct *sas_ha)
 static int hisi_sas_query_task(struct sas_task *task)
 {
 	struct scsi_lun lun;
-	struct hisi_sas_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	int rc = TMF_RESP_FUNC_FAILED;
 
 	if (task->lldd_task && task->task_proto & SAS_PROTOCOL_SSP) {
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
index 862f4e8b7eb58..76756dd318d75 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
@@ -958,7 +958,7 @@ static void prep_ssp_v1_hw(struct hisi_hba *hisi_hba,
 	struct hisi_sas_port *port = slot->port;
 	struct sas_ssp_task *ssp_task = &task->ssp_task;
 	struct scsi_cmnd *scsi_cmnd = ssp_task->cmd;
-	struct hisi_sas_tmf_task *tmf = slot->tmf;
+	struct sas_tmf_task *tmf = slot->tmf;
 	int has_data = 0, priority = !!tmf;
 	u8 *buf_cmd, fburst = 0;
 	u32 dw1, dw2;
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
index a6d89a1495461..9a8009fc3f206 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
@@ -1742,7 +1742,7 @@ static void prep_ssp_v2_hw(struct hisi_hba *hisi_hba,
 	struct hisi_sas_port *port = slot->port;
 	struct sas_ssp_task *ssp_task = &task->ssp_task;
 	struct scsi_cmnd *scsi_cmnd = ssp_task->cmd;
-	struct hisi_sas_tmf_task *tmf = slot->tmf;
+	struct sas_tmf_task *tmf = slot->tmf;
 	int has_data = 0, priority = !!tmf;
 	u8 *buf_cmd;
 	u32 dw1 = 0, dw2 = 0;
@@ -2499,7 +2499,7 @@ static void prep_ata_v2_hw(struct hisi_hba *hisi_hba,
 	struct hisi_sas_cmd_hdr *hdr = slot->cmd_hdr;
 	struct asd_sas_port *sas_port = device->port;
 	struct hisi_sas_port *port = to_hisi_sas_port(sas_port);
-	struct hisi_sas_tmf_task *tmf = slot->tmf;
+	struct sas_tmf_task *tmf = slot->tmf;
 	u8 *buf_cmd;
 	int has_data = 0, hdr_tag = 0;
 	u32 dw0, dw1 = 0, dw2 = 0;
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
index 3f3d768548c57..2fce1c0a54635 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
@@ -1223,7 +1223,7 @@ static void prep_ssp_v3_hw(struct hisi_hba *hisi_hba,
 	struct hisi_sas_port *port = slot->port;
 	struct sas_ssp_task *ssp_task = &task->ssp_task;
 	struct scsi_cmnd *scsi_cmnd = ssp_task->cmd;
-	struct hisi_sas_tmf_task *tmf = slot->tmf;
+	struct sas_tmf_task *tmf = slot->tmf;
 	int has_data = 0, priority = !!tmf;
 	unsigned char prot_op;
 	u8 *buf_cmd;
diff --git a/drivers/scsi/mvsas/mv_defs.h b/drivers/scsi/mvsas/mv_defs.h
index 199ab49aa047f..7123a2efbf583 100644
--- a/drivers/scsi/mvsas/mv_defs.h
+++ b/drivers/scsi/mvsas/mv_defs.h
@@ -486,9 +486,4 @@ enum datapres_field {
 	SENSE_DATA	= 2,
 };
 
-/* define task management IU */
-struct mvs_tmf_task{
-	u8 tmf;
-	u16 tag_of_task_to_be_managed;
-};
 #endif
diff --git a/drivers/scsi/mvsas/mv_sas.c b/drivers/scsi/mvsas/mv_sas.c
index 107f1993932bf..04d3710c683fe 100644
--- a/drivers/scsi/mvsas/mv_sas.c
+++ b/drivers/scsi/mvsas/mv_sas.c
@@ -551,7 +551,7 @@ static int mvs_task_prep_ata(struct mvs_info *mvi,
 
 static int mvs_task_prep_ssp(struct mvs_info *mvi,
 			     struct mvs_task_exec_info *tei, int is_tmf,
-			     struct mvs_tmf_task *tmf)
+			     struct sas_tmf_task *tmf)
 {
 	struct sas_task *task = tei->task;
 	struct mvs_cmd_hdr *hdr = tei->hdr;
@@ -691,7 +691,7 @@ static int mvs_task_prep_ssp(struct mvs_info *mvi,
 
 #define	DEV_IS_GONE(mvi_dev)	((!mvi_dev || (mvi_dev->dev_type == SAS_PHY_UNUSED)))
 static int mvs_task_prep(struct sas_task *task, struct mvs_info *mvi, int is_tmf,
-				struct mvs_tmf_task *tmf, int *pass)
+				struct sas_tmf_task *tmf, int *pass)
 {
 	struct domain_device *dev = task->dev;
 	struct mvs_device *mvi_dev = dev->lldd_dev;
@@ -837,7 +837,7 @@ static int mvs_task_prep(struct sas_task *task, struct mvs_info *mvi, int is_tmf
 
 static int mvs_task_exec(struct sas_task *task, gfp_t gfp_flags,
 				struct completion *completion, int is_tmf,
-				struct mvs_tmf_task *tmf)
+				struct sas_tmf_task *tmf)
 {
 	struct mvs_info *mvi = NULL;
 	u32 rc = 0;
@@ -1275,7 +1275,7 @@ static void mvs_tmf_timedout(struct timer_list *t)
 
 #define MVS_TASK_TIMEOUT 20
 static int mvs_exec_internal_tmf_task(struct domain_device *dev,
-			void *parameter, u32 para_len, struct mvs_tmf_task *tmf)
+			void *parameter, u32 para_len, struct sas_tmf_task *tmf)
 {
 	int res, retry;
 	struct sas_task *task = NULL;
@@ -1350,7 +1350,7 @@ static int mvs_exec_internal_tmf_task(struct domain_device *dev,
 }
 
 static int mvs_debug_issue_ssp_tmf(struct domain_device *dev,
-				u8 *lun, struct mvs_tmf_task *tmf)
+				u8 *lun, struct sas_tmf_task *tmf)
 {
 	struct sas_ssp_task ssp_task;
 	if (!(dev->tproto & SAS_PROTOCOL_SSP))
@@ -1382,7 +1382,7 @@ int mvs_lu_reset(struct domain_device *dev, u8 *lun)
 {
 	unsigned long flags;
 	int rc = TMF_RESP_FUNC_FAILED;
-	struct mvs_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	struct mvs_device * mvi_dev = dev->lldd_dev;
 	struct mvs_info *mvi = mvi_dev->mvi_info;
 
@@ -1426,7 +1426,7 @@ int mvs_query_task(struct sas_task *task)
 {
 	u32 tag;
 	struct scsi_lun lun;
-	struct mvs_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	int rc = TMF_RESP_FUNC_FAILED;
 
 	if (task->lldd_task && task->task_proto & SAS_PROTOCOL_SSP) {
@@ -1463,7 +1463,7 @@ int mvs_query_task(struct sas_task *task)
 int mvs_abort_task(struct sas_task *task)
 {
 	struct scsi_lun lun;
-	struct mvs_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	struct domain_device *dev = task->dev;
 	struct mvs_device *mvi_dev = (struct mvs_device *)dev->lldd_dev;
 	struct mvs_info *mvi;
@@ -1540,7 +1540,7 @@ int mvs_abort_task(struct sas_task *task)
 int mvs_abort_task_set(struct domain_device *dev, u8 *lun)
 {
 	int rc;
-	struct mvs_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 
 	tmf_task.tmf = TMF_ABORT_TASK_SET;
 	rc = mvs_debug_issue_ssp_tmf(dev, lun, &tmf_task);
@@ -1551,7 +1551,7 @@ int mvs_abort_task_set(struct domain_device *dev, u8 *lun)
 int mvs_clear_task_set(struct domain_device *dev, u8 *lun)
 {
 	int rc = TMF_RESP_FUNC_FAILED;
-	struct mvs_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 
 	tmf_task.tmf = TMF_CLEAR_TASK_SET;
 	rc = mvs_debug_issue_ssp_tmf(dev, lun, &tmf_task);
diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c
index 352705e023c83..537b762a2b834 100644
--- a/drivers/scsi/pm8001/pm8001_hwi.c
+++ b/drivers/scsi/pm8001/pm8001_hwi.c
@@ -4624,7 +4624,7 @@ int pm8001_chip_abort_task(struct pm8001_hba_info *pm8001_ha,
  * @tmf: task management function.
  */
 int pm8001_chip_ssp_tm_req(struct pm8001_hba_info *pm8001_ha,
-	struct pm8001_ccb_info *ccb, struct pm8001_tmf_task *tmf)
+	struct pm8001_ccb_info *ccb, struct sas_tmf_task *tmf)
 {
 	struct sas_task *task = ccb->task;
 	struct domain_device *dev = task->dev;
@@ -4636,7 +4636,7 @@ int pm8001_chip_ssp_tm_req(struct pm8001_hba_info *pm8001_ha,
 
 	memset(&sspTMCmd, 0, sizeof(sspTMCmd));
 	sspTMCmd.device_id = cpu_to_le32(pm8001_dev->device_id);
-	sspTMCmd.relate_tag = cpu_to_le32(tmf->tag_of_task_to_be_managed);
+	sspTMCmd.relate_tag = cpu_to_le32((u32)tmf->tag_of_task_to_be_managed);
 	sspTMCmd.tmf = cpu_to_le32(tmf->tmf);
 	memcpy(sspTMCmd.lun, task->ssp_task.LUN, 8);
 	sspTMCmd.tag = cpu_to_le32(ccb->ccb_tag);
diff --git a/drivers/scsi/pm8001/pm8001_sas.c b/drivers/scsi/pm8001/pm8001_sas.c
index 93fe1bec25e21..2c003c17fe6aa 100644
--- a/drivers/scsi/pm8001/pm8001_sas.c
+++ b/drivers/scsi/pm8001/pm8001_sas.c
@@ -335,7 +335,7 @@ static int pm8001_task_prep_ata(struct pm8001_hba_info *pm8001_ha,
   * @tmf: the task management IU
   */
 static int pm8001_task_prep_ssp_tm(struct pm8001_hba_info *pm8001_ha,
-	struct pm8001_ccb_info *ccb, struct pm8001_tmf_task *tmf)
+	struct pm8001_ccb_info *ccb, struct sas_tmf_task *tmf)
 {
 	return PM8001_CHIP_DISP->ssp_tm_req(pm8001_ha, ccb, tmf);
 }
@@ -378,7 +378,7 @@ static int sas_find_local_port_id(struct domain_device *dev)
   * @tmf: the task management IU
   */
 static int pm8001_task_exec(struct sas_task *task,
-	gfp_t gfp_flags, int is_tmf, struct pm8001_tmf_task *tmf)
+	gfp_t gfp_flags, int is_tmf, struct sas_tmf_task *tmf)
 {
 	struct domain_device *dev = task->dev;
 	struct pm8001_hba_info *pm8001_ha;
@@ -715,7 +715,7 @@ static void pm8001_tmf_timedout(struct timer_list *t)
   * this function, note it is also with the task execute interface.
   */
 static int pm8001_exec_internal_tmf_task(struct domain_device *dev,
-	void *parameter, u32 para_len, struct pm8001_tmf_task *tmf)
+	void *parameter, u32 para_len, struct sas_tmf_task *tmf)
 {
 	int res, retry;
 	struct sas_task *task = NULL;
@@ -906,7 +906,7 @@ void pm8001_dev_gone(struct domain_device *dev)
 }
 
 static int pm8001_issue_ssp_tmf(struct domain_device *dev,
-	u8 *lun, struct pm8001_tmf_task *tmf)
+	u8 *lun, struct sas_tmf_task *tmf)
 {
 	struct sas_ssp_task ssp_task;
 	if (!(dev->tproto & SAS_PROTOCOL_SSP))
@@ -1108,7 +1108,7 @@ int pm8001_I_T_nexus_event_handler(struct domain_device *dev)
 int pm8001_lu_reset(struct domain_device *dev, u8 *lun)
 {
 	int rc = TMF_RESP_FUNC_FAILED;
-	struct pm8001_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	struct pm8001_device *pm8001_dev = dev->lldd_dev;
 	struct pm8001_hba_info *pm8001_ha = pm8001_find_ha_by_dev(dev);
 	DECLARE_COMPLETION_ONSTACK(completion_setstate);
@@ -1137,7 +1137,7 @@ int pm8001_query_task(struct sas_task *task)
 {
 	u32 tag = 0xdeadbeef;
 	struct scsi_lun lun;
-	struct pm8001_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	int rc = TMF_RESP_FUNC_FAILED;
 	if (unlikely(!task || !task->lldd_task || !task->dev))
 		return rc;
@@ -1186,7 +1186,7 @@ int pm8001_abort_task(struct sas_task *task)
 	struct pm8001_hba_info *pm8001_ha;
 	struct scsi_lun lun;
 	struct pm8001_device *pm8001_dev;
-	struct pm8001_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	int rc = TMF_RESP_FUNC_FAILED, ret;
 	u32 phy_id;
 	struct sas_task_slow slow_task;
@@ -1335,7 +1335,7 @@ int pm8001_abort_task(struct sas_task *task)
 
 int pm8001_abort_task_set(struct domain_device *dev, u8 *lun)
 {
-	struct pm8001_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 
 	tmf_task.tmf = TMF_ABORT_TASK_SET;
 	return pm8001_issue_ssp_tmf(dev, lun, &tmf_task);
@@ -1343,7 +1343,7 @@ int pm8001_abort_task_set(struct domain_device *dev, u8 *lun)
 
 int pm8001_clear_task_set(struct domain_device *dev, u8 *lun)
 {
-	struct pm8001_tmf_task tmf_task;
+	struct sas_tmf_task tmf_task;
 	struct pm8001_device *pm8001_dev = dev->lldd_dev;
 	struct pm8001_hba_info *pm8001_ha = pm8001_find_ha_by_dev(dev);
 
diff --git a/drivers/scsi/pm8001/pm8001_sas.h b/drivers/scsi/pm8001/pm8001_sas.h
index 52c62a29df18a..75864b47921aa 100644
--- a/drivers/scsi/pm8001/pm8001_sas.h
+++ b/drivers/scsi/pm8001/pm8001_sas.h
@@ -99,11 +99,7 @@ extern const struct pm8001_dispatch pm8001_80xx_dispatch;
 struct pm8001_hba_info;
 struct pm8001_ccb_info;
 struct pm8001_device;
-/* define task management IU */
-struct pm8001_tmf_task {
-	u8	tmf;
-	u32	tag_of_task_to_be_managed;
-};
+
 struct pm8001_ioctl_payload {
 	u32	signature;
 	u16	major_function;
@@ -203,7 +199,7 @@ struct pm8001_dispatch {
 		struct pm8001_device *pm8001_dev, u8 flag, u32 task_tag,
 		u32 cmd_tag);
 	int (*ssp_tm_req)(struct pm8001_hba_info *pm8001_ha,
-		struct pm8001_ccb_info *ccb, struct pm8001_tmf_task *tmf);
+		struct pm8001_ccb_info *ccb, struct sas_tmf_task *tmf);
 	int (*get_nvmd_req)(struct pm8001_hba_info *pm8001_ha, void *payload);
 	int (*set_nvmd_req)(struct pm8001_hba_info *pm8001_ha, void *payload);
 	int (*fw_flash_update_req)(struct pm8001_hba_info *pm8001_ha,
@@ -682,7 +678,7 @@ int pm8001_chip_set_nvmd_req(struct pm8001_hba_info *pm8001_ha, void *payload);
 int pm8001_chip_get_nvmd_req(struct pm8001_hba_info *pm8001_ha, void *payload);
 int pm8001_chip_ssp_tm_req(struct pm8001_hba_info *pm8001_ha,
 				struct pm8001_ccb_info *ccb,
-				struct pm8001_tmf_task *tmf);
+				struct sas_tmf_task *tmf);
 int pm8001_chip_abort_task(struct pm8001_hba_info *pm8001_ha,
 				struct pm8001_device *pm8001_dev,
 				u8 flag, u32 task_tag, u32 cmd_tag);
diff --git a/include/scsi/libsas.h b/include/scsi/libsas.h
index 22c54f21206d4..306005b3b60f3 100644
--- a/include/scsi/libsas.h
+++ b/include/scsi/libsas.h
@@ -576,6 +576,15 @@ struct sas_ssp_task {
 	struct scsi_cmnd *cmd;
 };
 
+struct sas_tmf_task {
+	u8 tmf;
+	u16 tag_of_task_to_be_managed;
+
+	/* Temp */
+	int force_phy;
+	int phy_id;
+};
+
 struct sas_task {
 	struct domain_device *dev;
 
-- 
2.39.5




  parent reply	other threads:[~2025-04-29 17:48 UTC|newest]

Thread overview: 387+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-29 16:37 [PATCH 5.15 000/373] 5.15.181-rc1 review Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 5.15 001/373] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 5.15 002/373] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 003/373] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-30  8:12   ` Tai, Gerrard
2025-05-01  8:03     ` Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 004/373] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 005/373] net: ethtool: Dont call .cleanup_data when prepare_data fails Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 006/373] ata: sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 007/373] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 008/373] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 009/373] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 010/373] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 011/373] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 012/373] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 013/373] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 014/373] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 015/373] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 016/373] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 017/373] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 018/373] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 019/373] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 020/373] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 021/373] ASoC: fsl_audmix: register card device depends on dais property Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 022/373] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 023/373] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 024/373] jfs: Fix uninit-value access of imap allocated in the diMount() function Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 025/373] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 026/373] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 027/373] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 028/373] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 029/373] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 030/373] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 031/373] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 032/373] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 033/373] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 034/373] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 035/373] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 036/373] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 037/373] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 038/373] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 039/373] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 040/373] drm/amd/display: Update Cursor request mode to the beginning prefetch always Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 041/373] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 042/373] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 043/373] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 044/373] drivers: base: devres: Allow to release group on device release Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 045/373] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 046/373] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 047/373] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 048/373] PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 049/373] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 050/373] ktest: Fix Test Failures Due to Missing LOG_FILE Directories Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 051/373] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 052/373] pwm: rcar: Simplify multiplication/shift logic Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 053/373] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 054/373] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 055/373] bpf: Add endian modifiers to fix endian warnings Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 056/373] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 057/373] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 058/373] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 059/373] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 060/373] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 061/373] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.15 062/373] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 063/373] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 064/373] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 065/373] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 066/373] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 067/373] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 068/373] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 069/373] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 070/373] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 071/373] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 072/373] media: i2c: ccs: Set the devices runtime PM status correctly in remove Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 073/373] media: i2c: ccs: Set the devices runtime PM status correctly in probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 074/373] media: i2c: ov7251: Set enable GPIO low " Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 075/373] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 076/373] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 077/373] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 078/373] mtd: Add check for devm_kcalloc() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 079/373] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 080/373] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 081/373] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 082/373] wifi: mt76: Add check for devm_kstrdup() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 083/373] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 084/373] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 085/373] bus: mhi: host: Fix race between unprepare and queue_buf Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 086/373] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 087/373] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 088/373] i3c: master: svc: Use readsb helper for reading MDB Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 089/373] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 090/373] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 091/373] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 092/373] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 093/373] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 094/373] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 095/373] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 096/373] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 097/373] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 098/373] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 099/373] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 100/373] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 101/373] mm/hwpoison: do not send SIGBUS to processes with recovered clean pages Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 102/373] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 103/373] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 104/373] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 105/373] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 106/373] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 107/373] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 108/373] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 109/373] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 110/373] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 111/373] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 112/373] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 113/373] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 114/373] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 115/373] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 116/373] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 117/373] ACPI: platform-profile: Fix CFI violation when accessing sysfs files Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 118/373] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 119/373] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 120/373] scsi: hisi_sas: Start delivery hisi_sas_task_exec() directly Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 121/373] scsi: hisi_sas: Pass abort structure for internal abort Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.15 122/373] scsi: hisi_sas: Factor out task prep and delivery code Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 123/373] scsi: hisi_sas: Fix setting of hisi_sas_slot.is_internal Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 124/373] scsi: libsas: Delete lldd_clear_aca callback Greg Kroah-Hartman
2025-04-29 16:40 ` Greg Kroah-Hartman [this message]
2025-04-29 16:40 ` [PATCH 5.15 126/373] scsi: hisi_sas: Enable force phy when SATA disk directly connected Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 127/373] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 128/373] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-30  8:49   ` Remi Pommarel
2025-04-30  9:16     ` Greg Kroah-Hartman
2025-04-30 12:53       ` Remi Pommarel
2025-04-29 16:40 ` [PATCH 5.15 129/373] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 130/373] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 131/373] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 132/373] md/raid10: fix missing discard IO accounting Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 133/373] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 134/373] RDMA/hns: Fix wrong maximum DMA segment size Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 135/373] RDMA/core: Silence oversized kvmalloc() warning Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 136/373] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 137/373] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 138/373] Bluetooth: l2cap: Check encryption key size on incoming connection Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 139/373] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 140/373] igc: fix PTM cycle trigger logic Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 141/373] igc: move ktime snapshot into PTM retry loop Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 142/373] igc: handle the IGC_PTP_ENABLED flag correctly Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 143/373] igc: cleanup PTP module if probe fails Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 144/373] net: mctp: Set SOCK_RCU_FREE Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 145/373] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 146/373] cxgb4: fix memory leak in cxgb4_init_ethtool_filters() error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 147/373] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 148/373] net: dsa: mv88e6xxx: avoid unregistering devlink regions which were never registered Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 149/373] net: dsa: avoid refcount warnings when ds->ops->tag_8021q_vlan_del() fails Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 150/373] riscv: Properly export reserved regions in /proc/iomem Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 151/373] riscv: KGDB: Do not inline arch_kgdb_breakpoint() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 152/373] riscv: KGDB: Remove ".option norvc/.option rvc" for kgdb_compiled_break Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 153/373] cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 154/373] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 155/373] Revert "PCI: Avoid reset when disabled via sysfs" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 156/373] ASoC: codecs:lpass-wsa-macro: Fix vi feedback rate Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 157/373] ASoC: codecs:lpass-wsa-macro: Fix logic of enabling vi channels Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 158/373] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 159/373] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 160/373] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 161/373] nfsd: decrease sc_count directly if fail to queue dl_recall Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 162/373] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 163/373] crypto: caam/qi - Fix drv_ctx refcount bug Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 164/373] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 165/373] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 166/373] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 167/373] loop: properly send KOBJ_CHANGED uevent for disk device Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 168/373] loop: LOOP_SET_FD: send uevents for partitions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 169/373] mm/gup: fix wrongly calculated returned value in fault_in_safe_writeable() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 170/373] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 171/373] tracing: Fix filter string testing Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 172/373] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 173/373] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 174/373] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 175/373] perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 176/373] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SPR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 177/373] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 178/373] drm/amd/pm: Prevent division by zero Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 179/373] drm/amd/pm/powerplay: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 180/373] drm/amd/pm/powerplay/hwmgr/smu7_thermal: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 181/373] drm/amd/pm/swsmu/smu13/smu_v13_0: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.15 182/373] drm/amd/pm/powerplay/hwmgr/vega20_thermal: " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 183/373] drm/amdgpu/dma_buf: fix page_link check Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 184/373] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 185/373] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 186/373] KVM: arm64: Get rid of host SVE tracking/saving Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 187/373] KVM: arm64: Always start with clearing SVE flag on load Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 188/373] KVM: arm64: Discard any SVE state when entering KVM guests Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 189/373] arm64/fpsimd: Track the saved FPSIMD state type separately to TIF_SVE Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 190/373] arm64/fpsimd: Have KVM explicitly say which FP registers to save Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 191/373] arm64/fpsimd: Stop using TIF_SVE to manage register saving in KVM Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 192/373] KVM: arm64: Unconditionally save+flush host FPSIMD/SVE/SME state Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 193/373] KVM: arm64: Remove host FPSIMD saving for non-protected KVM Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 194/373] KVM: arm64: Remove VHE host restore of CPACR_EL1.ZEN Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 195/373] KVM: arm64: Calculate cptr_el2 traps on activating traps Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 196/373] KVM: arm64: Eagerly switch ZCR_EL{1,2} Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 197/373] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 198/373] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 199/373] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 200/373] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 201/373] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 202/373] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 203/373] ipv6: release nexthop on device removal Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 204/373] net: fix crash when config small gso_max_size/gso_ipv4_max_size Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 205/373] filemap: Fix bounds checking in filemap_read() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 206/373] phonet/pep: fix racy skb_queue_empty() use Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 207/373] bnxt_re: avoid shift undefined behavior in bnxt_qplib_alloc_init_hwq Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 208/373] net: mana: Fix error handling in mana_create_txq/rxqs NAPI cleanup Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 209/373] x86/pvh: Call C code via the kernel virtual mapping Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 210/373] powerpc/rtas: Prevent Spectre v1 gadget construction in sys_rtas() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 211/373] phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 212/373] wifi: ath10k: avoid NULL pointer error during sdio remove Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 213/373] drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 214/373] drm/amd/display: Fix out-of-bounds access in dcn21_link_encoder_create Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 215/373] drm/amd/display: Add null checks for stream and plane before dereferencing Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 216/373] drm/amdgpu: fix usage slab after free Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 217/373] landlock: Add the errata interface Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 218/373] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 219/373] smb: client: fix potential UAF in cifs_dump_full_key() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 220/373] ksmbd: fix potencial out-of-bounds when buffer offset is invalid Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 221/373] net: make sock_inuse_add() available Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 222/373] smb: client: fix use-after-free bug in cifs_debug_data_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 223/373] cifs: Fix UAF in cifs_demultiplex_thread() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 224/373] smb: client: fix UAF in async decryption Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 225/373] smb: client: fix NULL ptr deref in crypto_aead_setkey() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 226/373] smb/server: fix potential null-ptr-deref of lease_ctx_info in smb2_open() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 227/373] smb: client: fix potential deadlock when releasing mids Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 228/373] smb: client: fix potential UAF in cifs_stats_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 229/373] sched/task_stack: fix object_is_on_stack() for KASAN tagged pointers Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 230/373] bpf: avoid holding freeze_mutex during mmap operation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 231/373] bpf: Check rcu_read_lock_trace_held() before calling bpf map helpers Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 232/373] blk-cgroup: support to track if policy is online Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 233/373] blk-iocost: do not WARN if iocg was already offlined Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 234/373] ext4: fix timer use-after-free on failed mount Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 235/373] ipvs: properly dereference pe in ip_vs_add_service Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 236/373] net: openvswitch: fix race on port output Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 237/373] openvswitch: fix lockup on tx to unregistering netdev with carrier Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 238/373] scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 239/373] scsi: ufs: bsg: Set bsg_queue to NULL after removal Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 240/373] net: defer final struct net free in netns dismantle Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 241/373] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.15 242/373] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 243/373] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 244/373] jfs: Fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 245/373] dm cache: fix flushing uninitialized delayed_work on cache_ctr error Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 246/373] drm/i915/gt: Cleanup partial engine discovery failures Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 247/373] fs/proc: do_task_stat: use sig->stats_lock to gather the threads/children stats Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 248/373] mm: fix apply_to_existing_page_range() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 249/373] f2fs: check validation of fault attrs in f2fs_build_fault_attr() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 250/373] pmdomain: ti: Add a null pointer check to the omap_prm_domain_init Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 251/373] scsi: lpfc: Fix null pointer dereference after failing to issue FLOGI and PLOGI Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 252/373] f2fs: Add inline to f2fs_build_fault_attr() stub Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 253/373] Bluetooth: SCO: Fix UAF on sco_sock_timeout Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 254/373] module: sign with sha512 instead of sha1 by default Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 255/373] media: streamzap: remove unnecessary ir_raw_event_reset and handle Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 256/373] media: streamzap: no need for usb pid/vid in device name Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 257/373] media: streamzap: less chatter Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 258/373] media: streamzap: remove unused struct members Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 259/373] media: streamzap: fix race between device disconnection and urb callback Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 260/373] auxdisplay: hd44780: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 261/373] auxdisplay: hd44780: Fix an API misuse in hd44780.c Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 262/373] net: dsa: mv88e6xxx: fix VTU methods for 6320 family Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 263/373] soc: samsung: exynos-chipid: avoid soc_device_to_device() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 264/373] soc: samsung: exynos-chipid: Pass revision reg offsets Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 265/373] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 266/373] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 267/373] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 268/373] backlight: led_bl: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 269/373] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 270/373] cifs: print TIDs as hex Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 271/373] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 272/373] cifs: fix integer overflow in match_server() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 273/373] gpio: tegra186: Force one interrupt per bank Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 274/373] gpio: tegra186: fix resource handling in ACPI probe path Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 275/373] PCI: Coalesce host bridge contiguous apertures Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 276/373] PCI: Assign PCI domain IDs by ida_alloc() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 277/373] PCI: Fix reference leak in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 278/373] ksmbd: Prevent integer overflow in calculation of deadtime Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 279/373] selftests/mm: generate a temporary mountpoint for cgroup filesystem Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 280/373] kmsan: disable strscpy() optimization under KMSAN Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 281/373] string: Add load_unaligned_zeropad() code path to sized_strscpy() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 282/373] drm/msm/a6xx: Improve gpu recovery sequence Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 283/373] drm/msm/a6xx: Handle GMU prepare-slumber hfi failure Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 284/373] drm/msm/a6xx: Avoid gx gbit halt during rpm suspend Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 285/373] drm/msm/a6xx: Fix stale rpmh votes from GPU Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 286/373] dma/contiguous: avoid warning about unused size_bytes Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 287/373] cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 288/373] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 289/373] cpufreq: cppc: Fix invalid return value in .get() callback Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 290/373] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 291/373] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 292/373] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 293/373] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 294/373] net: dsa: mt7530: sync driver-specific behavior of MT7531 variants Greg Kroah-Hartman
2025-04-29 18:34   ` Daniel Golle
2025-04-30  2:41     ` Daniel Golle
2025-05-01  8:00       ` Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 295/373] iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 296/373] riscv: uprobes: Add missing fence.i after building the XOL buffer Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 297/373] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 298/373] net: selftests: initialize TCP header and skb payload with zero Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 299/373] net: phy: microchip: force IRQ polling mode for lan88xx Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 300/373] drm/amd/display: Fix gpu reset in multidisplay config Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 301/373] KVM: SVM: Allocate IR data using atomic allocation Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.15 302/373] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 303/373] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 304/373] mei: me: add panther lake H DID Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 305/373] KVM: x86: Reset IRTE to host control if *new* route isnt postable Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 306/373] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 307/373] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 308/373] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 309/373] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 310/373] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 311/373] usb: chipidea: ci_hdrc_imx: fix usbmisc handling Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 312/373] usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 313/373] usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 314/373] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 315/373] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 316/373] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 317/373] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 318/373] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 319/373] USB: wdm: handle IO errors in wdm_wwan_port_start Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 320/373] USB: wdm: close race between wdm_open and wdm_wwan_port_stop Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 321/373] USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 322/373] USB: wdm: add annotation Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 323/373] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 324/373] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 325/373] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 326/373] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 327/373] s390/sclp: Add check for get_zeroed_page() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 328/373] s390/tty: Fix a potential memory leak bug Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 329/373] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 330/373] fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 331/373] usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 332/373] sound/virtio: Fix cancel_sync warnings on uninitialized work_structs Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 333/373] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 334/373] usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 335/373] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 336/373] objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 337/373] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 338/373] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 339/373] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 340/373] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 341/373] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 342/373] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 343/373] xen: Change xen-acpi-processor dom0 dependency Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 344/373] nvme: requeue namespace scan on missed AENs Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 345/373] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 346/373] nvme: re-read ANA log page after ns scan completes Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 347/373] objtool: Stop UNRET validation on UD2 Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 348/373] selftests/mincore: Allow read-ahead pages to reach the end of the file Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 349/373] x86/bugs: Use SBPB in write_ibpb() if applicable Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 350/373] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 351/373] x86/bugs: Dont fill RSB on context switch with eIBRS Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 352/373] nvmet-fc: take tgtport reference only once Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 353/373] nvmet-fc: put ref when assoc->del_work is already scheduled Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 354/373] ext4: make block validity check resistent to sb bh corruption Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 355/373] scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 356/373] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 357/373] loop: aio inherit the ioprio of original request Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 358/373] ubsan: Fix panic from test_ubsan_out_of_bounds Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 359/373] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 360/373] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 361/373] jfs: define xtree root and page independently Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.15 362/373] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 363/373] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 364/373] net: dsa: mv88e6xxx: fix atu_move_port_mask for 6341 family Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 365/373] net: dsa: mv88e6xxx: enable PVT for 6321 switch Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 366/373] net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 367/373] drm/amd/display: fix double free issue during amdgpu module unload Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 368/373] xdp: Reset bpf_redirect_info before running a xdps BPF prog Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 369/373] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 370/373] nvme: fixup scan failure for non-ANA multipath controllers Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 371/373] PCI: Fix use-after-free in pci_bus_release_domain_nr() Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 372/373] PCI: Fix dropping valid root bus resources with .end = zero Greg Kroah-Hartman
2025-04-29 16:44 ` [PATCH 5.15 373/373] PCI: Release resource invalidated by coalescing Greg Kroah-Hartman
2025-04-30  7:48 ` [PATCH 5.15 000/373] 5.15.181-rc1 review Hardik Garg
2025-04-30 15:03 ` Jon Hunter
2025-04-30 15:56 ` Shuah Khan
2025-04-30 16:49 ` Naresh Kamboju
2025-04-30 21:29 ` Ron Economos

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=20250429161128.318581987@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=damien.lemoal@opensource.wdc.com \
    --cc=hch@lst.de \
    --cc=john.garry@huawei.com \
    --cc=liyihang6@hisilicon.com \
    --cc=martin.petersen@oracle.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).