public inbox for stable@vger.kernel.org
 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, Tyrel Datwyler <tyreld@linux.ibm.com>,
	Brian King <brking@linux.vnet.ibm.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 062/372] scsi: ibmvfc: Remove BUG_ON in the case of an empty event pool
Date: Fri, 24 Nov 2023 17:47:29 +0000	[thread overview]
Message-ID: <20231124172012.552103971@linuxfoundation.org> (raw)
In-Reply-To: <20231124172010.413667921@linuxfoundation.org>

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

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

From: Tyrel Datwyler <tyreld@linux.ibm.com>

[ Upstream commit b39f2d10b86d0af353ea339e5815820026bca48f ]

In practice the driver should never send more commands than are allocated
to a queue's event pool. In the unlikely event that this happens, the code
asserts a BUG_ON, and in the case that the kernel is not configured to
crash on panic returns a junk event pointer from the empty event list
causing things to spiral from there. This BUG_ON is a historical artifact
of the ibmvfc driver first being upstreamed, and it is well known now that
the use of BUG_ON is bad practice except in the most unrecoverable
scenario. There is nothing about this scenario that prevents the driver
from recovering and carrying on.

Remove the BUG_ON in question from ibmvfc_get_event() and return a NULL
pointer in the case of an empty event pool. Update all call sites to
ibmvfc_get_event() to check for a NULL pointer and perfrom the appropriate
failure or recovery action.

Signed-off-by: Tyrel Datwyler <tyreld@linux.ibm.com>
Link: https://lore.kernel.org/r/20230921225435.3537728-2-tyreld@linux.ibm.com
Reviewed-by: Brian King <brking@linux.vnet.ibm.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/scsi/ibmvscsi/ibmvfc.c | 124 ++++++++++++++++++++++++++++++++-
 1 file changed, 122 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/ibmvscsi/ibmvfc.c b/drivers/scsi/ibmvscsi/ibmvfc.c
index 41148b0430df9..013f5c05e9f39 100644
--- a/drivers/scsi/ibmvscsi/ibmvfc.c
+++ b/drivers/scsi/ibmvscsi/ibmvfc.c
@@ -1518,7 +1518,11 @@ static struct ibmvfc_event *ibmvfc_get_event(struct ibmvfc_queue *queue)
 	unsigned long flags;
 
 	spin_lock_irqsave(&queue->l_lock, flags);
-	BUG_ON(list_empty(&queue->free));
+	if (list_empty(&queue->free)) {
+		ibmvfc_log(queue->vhost, 4, "empty event pool on queue:%ld\n", queue->hwq_id);
+		spin_unlock_irqrestore(&queue->l_lock, flags);
+		return NULL;
+	}
 	evt = list_entry(queue->free.next, struct ibmvfc_event, queue_list);
 	atomic_set(&evt->free, 0);
 	list_del(&evt->queue_list);
@@ -1947,9 +1951,15 @@ static int ibmvfc_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *cmnd)
 	if (vhost->using_channels) {
 		scsi_channel = hwq % vhost->scsi_scrqs.active_queues;
 		evt = ibmvfc_get_event(&vhost->scsi_scrqs.scrqs[scsi_channel]);
+		if (!evt)
+			return SCSI_MLQUEUE_HOST_BUSY;
+
 		evt->hwq = hwq % vhost->scsi_scrqs.active_queues;
-	} else
+	} else {
 		evt = ibmvfc_get_event(&vhost->crq);
+		if (!evt)
+			return SCSI_MLQUEUE_HOST_BUSY;
+	}
 
 	ibmvfc_init_event(evt, ibmvfc_scsi_done, IBMVFC_CMD_FORMAT);
 	evt->cmnd = cmnd;
@@ -2037,6 +2047,11 @@ static int ibmvfc_bsg_timeout(struct bsg_job *job)
 
 	vhost->aborting_passthru = 1;
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		spin_unlock_irqrestore(vhost->host->host_lock, flags);
+		return -ENOMEM;
+	}
+
 	ibmvfc_init_event(evt, ibmvfc_bsg_timeout_done, IBMVFC_MAD_FORMAT);
 
 	tmf = &evt->iu.tmf;
@@ -2095,6 +2110,10 @@ static int ibmvfc_bsg_plogi(struct ibmvfc_host *vhost, unsigned int port_id)
 		goto unlock_out;
 
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		rc = -ENOMEM;
+		goto unlock_out;
+	}
 	ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
 	plogi = &evt->iu.plogi;
 	memset(plogi, 0, sizeof(*plogi));
@@ -2213,6 +2232,11 @@ static int ibmvfc_bsg_request(struct bsg_job *job)
 	}
 
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		spin_unlock_irqrestore(vhost->host->host_lock, flags);
+		rc = -ENOMEM;
+		goto out;
+	}
 	ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
 	mad = &evt->iu.passthru;
 
@@ -2301,6 +2325,11 @@ static int ibmvfc_reset_device(struct scsi_device *sdev, int type, char *desc)
 		else
 			evt = ibmvfc_get_event(&vhost->crq);
 
+		if (!evt) {
+			spin_unlock_irqrestore(vhost->host->host_lock, flags);
+			return -ENOMEM;
+		}
+
 		ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
 		tmf = ibmvfc_init_vfc_cmd(evt, sdev);
 		iu = ibmvfc_get_fcp_iu(vhost, tmf);
@@ -2504,6 +2533,8 @@ static struct ibmvfc_event *ibmvfc_init_tmf(struct ibmvfc_queue *queue,
 	struct ibmvfc_tmf *tmf;
 
 	evt = ibmvfc_get_event(queue);
+	if (!evt)
+		return NULL;
 	ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT);
 
 	tmf = &evt->iu.tmf;
@@ -2560,6 +2591,11 @@ static int ibmvfc_cancel_all_mq(struct scsi_device *sdev, int type)
 
 		if (found_evt && vhost->logged_in) {
 			evt = ibmvfc_init_tmf(&queues[i], sdev, type);
+			if (!evt) {
+				spin_unlock(queues[i].q_lock);
+				spin_unlock_irqrestore(vhost->host->host_lock, flags);
+				return -ENOMEM;
+			}
 			evt->sync_iu = &queues[i].cancel_rsp;
 			ibmvfc_send_event(evt, vhost, default_timeout);
 			list_add_tail(&evt->cancel, &cancelq);
@@ -2773,6 +2809,10 @@ static int ibmvfc_abort_task_set(struct scsi_device *sdev)
 
 	if (vhost->state == IBMVFC_ACTIVE) {
 		evt = ibmvfc_get_event(&vhost->crq);
+		if (!evt) {
+			spin_unlock_irqrestore(vhost->host->host_lock, flags);
+			return -ENOMEM;
+		}
 		ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT);
 		tmf = ibmvfc_init_vfc_cmd(evt, sdev);
 		iu = ibmvfc_get_fcp_iu(vhost, tmf);
@@ -4031,6 +4071,12 @@ static void ibmvfc_tgt_send_prli(struct ibmvfc_target *tgt)
 
 	kref_get(&tgt->kref);
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		return;
+	}
 	vhost->discovery_threads++;
 	ibmvfc_init_event(evt, ibmvfc_tgt_prli_done, IBMVFC_MAD_FORMAT);
 	evt->tgt = tgt;
@@ -4138,6 +4184,12 @@ static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *tgt)
 	kref_get(&tgt->kref);
 	tgt->logo_rcvd = 0;
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		return;
+	}
 	vhost->discovery_threads++;
 	ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
 	ibmvfc_init_event(evt, ibmvfc_tgt_plogi_done, IBMVFC_MAD_FORMAT);
@@ -4214,6 +4266,8 @@ static struct ibmvfc_event *__ibmvfc_tgt_get_implicit_logout_evt(struct ibmvfc_t
 
 	kref_get(&tgt->kref);
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt)
+		return NULL;
 	ibmvfc_init_event(evt, done, IBMVFC_MAD_FORMAT);
 	evt->tgt = tgt;
 	mad = &evt->iu.implicit_logout;
@@ -4241,6 +4295,13 @@ static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target *tgt)
 	vhost->discovery_threads++;
 	evt = __ibmvfc_tgt_get_implicit_logout_evt(tgt,
 						   ibmvfc_tgt_implicit_logout_done);
+	if (!evt) {
+		vhost->discovery_threads--;
+		ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		return;
+	}
 
 	ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
 	if (ibmvfc_send_event(evt, vhost, default_timeout)) {
@@ -4380,6 +4441,12 @@ static void ibmvfc_tgt_move_login(struct ibmvfc_target *tgt)
 
 	kref_get(&tgt->kref);
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT);
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		return;
+	}
 	vhost->discovery_threads++;
 	ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT);
 	ibmvfc_init_event(evt, ibmvfc_tgt_move_login_done, IBMVFC_MAD_FORMAT);
@@ -4546,6 +4613,14 @@ static void ibmvfc_adisc_timeout(struct timer_list *t)
 	vhost->abort_threads++;
 	kref_get(&tgt->kref);
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		tgt_err(tgt, "Failed to get cancel event for ADISC.\n");
+		vhost->abort_threads--;
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		spin_unlock_irqrestore(vhost->host->host_lock, flags);
+		return;
+	}
 	ibmvfc_init_event(evt, ibmvfc_tgt_adisc_cancel_done, IBMVFC_MAD_FORMAT);
 
 	evt->tgt = tgt;
@@ -4596,6 +4671,12 @@ static void ibmvfc_tgt_adisc(struct ibmvfc_target *tgt)
 
 	kref_get(&tgt->kref);
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		return;
+	}
 	vhost->discovery_threads++;
 	ibmvfc_init_event(evt, ibmvfc_tgt_adisc_done, IBMVFC_MAD_FORMAT);
 	evt->tgt = tgt;
@@ -4699,6 +4780,12 @@ static void ibmvfc_tgt_query_target(struct ibmvfc_target *tgt)
 
 	kref_get(&tgt->kref);
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE);
+		kref_put(&tgt->kref, ibmvfc_release_tgt);
+		__ibmvfc_reset_host(vhost);
+		return;
+	}
 	vhost->discovery_threads++;
 	evt->tgt = tgt;
 	ibmvfc_init_event(evt, ibmvfc_tgt_query_target_done, IBMVFC_MAD_FORMAT);
@@ -4871,6 +4958,13 @@ static void ibmvfc_discover_targets(struct ibmvfc_host *vhost)
 {
 	struct ibmvfc_discover_targets *mad;
 	struct ibmvfc_event *evt = ibmvfc_get_event(&vhost->crq);
+	int level = IBMVFC_DEFAULT_LOG_LEVEL;
+
+	if (!evt) {
+		ibmvfc_log(vhost, level, "Discover Targets failed: no available events\n");
+		ibmvfc_hard_reset_host(vhost);
+		return;
+	}
 
 	ibmvfc_init_event(evt, ibmvfc_discover_targets_done, IBMVFC_MAD_FORMAT);
 	mad = &evt->iu.discover_targets;
@@ -4948,8 +5042,15 @@ static void ibmvfc_channel_setup(struct ibmvfc_host *vhost)
 	struct ibmvfc_scsi_channels *scrqs = &vhost->scsi_scrqs;
 	unsigned int num_channels =
 		min(vhost->client_scsi_channels, vhost->max_vios_scsi_channels);
+	int level = IBMVFC_DEFAULT_LOG_LEVEL;
 	int i;
 
+	if (!evt) {
+		ibmvfc_log(vhost, level, "Channel Setup failed: no available events\n");
+		ibmvfc_hard_reset_host(vhost);
+		return;
+	}
+
 	memset(setup_buf, 0, sizeof(*setup_buf));
 	if (num_channels == 0)
 		setup_buf->flags = cpu_to_be32(IBMVFC_CANCEL_CHANNELS);
@@ -5011,6 +5112,13 @@ static void ibmvfc_channel_enquiry(struct ibmvfc_host *vhost)
 {
 	struct ibmvfc_channel_enquiry *mad;
 	struct ibmvfc_event *evt = ibmvfc_get_event(&vhost->crq);
+	int level = IBMVFC_DEFAULT_LOG_LEVEL;
+
+	if (!evt) {
+		ibmvfc_log(vhost, level, "Channel Enquiry failed: no available events\n");
+		ibmvfc_hard_reset_host(vhost);
+		return;
+	}
 
 	ibmvfc_init_event(evt, ibmvfc_channel_enquiry_done, IBMVFC_MAD_FORMAT);
 	mad = &evt->iu.channel_enquiry;
@@ -5133,6 +5241,12 @@ static void ibmvfc_npiv_login(struct ibmvfc_host *vhost)
 	struct ibmvfc_npiv_login_mad *mad;
 	struct ibmvfc_event *evt = ibmvfc_get_event(&vhost->crq);
 
+	if (!evt) {
+		ibmvfc_dbg(vhost, "NPIV Login failed: no available events\n");
+		ibmvfc_hard_reset_host(vhost);
+		return;
+	}
+
 	ibmvfc_gather_partition_info(vhost);
 	ibmvfc_set_login_info(vhost);
 	ibmvfc_init_event(evt, ibmvfc_npiv_login_done, IBMVFC_MAD_FORMAT);
@@ -5197,6 +5311,12 @@ static void ibmvfc_npiv_logout(struct ibmvfc_host *vhost)
 	struct ibmvfc_event *evt;
 
 	evt = ibmvfc_get_event(&vhost->crq);
+	if (!evt) {
+		ibmvfc_dbg(vhost, "NPIV Logout failed: no available events\n");
+		ibmvfc_hard_reset_host(vhost);
+		return;
+	}
+
 	ibmvfc_init_event(evt, ibmvfc_npiv_logout_done, IBMVFC_MAD_FORMAT);
 
 	mad = &evt->iu.npiv_logout;
-- 
2.42.0




  parent reply	other threads:[~2023-11-24 18:48 UTC|newest]

Thread overview: 380+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-24 17:46 [PATCH 6.1 000/372] 6.1.64-rc1 review Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 001/372] locking/ww_mutex/test: Fix potential workqueue corruption Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 002/372] lib/generic-radix-tree.c: Dont overflow in peek() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 003/372] perf/core: Bail out early if the request AUX area is out of bound Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 004/372] rcu: Dump memory object info if callback function is invalid Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 005/372] srcu: Fix srcu_struct node grpmask overflow on 64-bit systems Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 006/372] selftests/lkdtm: Disable CONFIG_UBSAN_TRAP in test config Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 007/372] clocksource/drivers/timer-imx-gpt: Fix potential memory leak Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 008/372] clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 009/372] smp,csd: Throw an error if a CSD lock is stuck for too long Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 010/372] cpu/hotplug: Dont offline the last non-isolated CPU Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 011/372] workqueue: Provide one lock class key per work_on_cpu() callsite Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 012/372] x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 013/372] wifi: plfxlc: fix clang-specific fortify warning Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 014/372] wifi: mac80211_hwsim: " Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 015/372] wifi: mac80211: dont return unset power in ieee80211_get_tx_power() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 016/372] atl1c: Work around the DMA RX overflow issue Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 017/372] bpf: Detect IP == ksym.end as part of BPF program Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 018/372] wifi: ath9k: fix clang-specific fortify warnings Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 019/372] wifi: ath10k: fix clang-specific fortify warning Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 020/372] net: annotate data-races around sk->sk_tx_queue_mapping Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 021/372] net: annotate data-races around sk->sk_dst_pending_confirm Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 022/372] wifi: ath10k: Dont touch the CE interrupt registers after power up Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 023/372] vsock: read from sockets error queue Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 024/372] bpf: Ensure proper register state printing for cond jumps Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 025/372] Bluetooth: btusb: Add date->evt_skb is NULL check Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 026/372] Bluetooth: Fix double free in hci_conn_cleanup Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 027/372] ACPI: EC: Add quirk for HP 250 G7 Notebook PC Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 028/372] tsnep: Fix tsnep_request_irq() format-overflow warning Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 029/372] platform/chrome: kunit: initialize lock for fake ec_dev Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 030/372] platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 031/372] drm/gma500: Fix call trace when psb_gem_mm_init() fails Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.1 032/372] drm/komeda: drop all currently held locks if deadlock happens Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 033/372] drm/amdgpu: not to save bo in the case of RAS err_event_athub Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 034/372] drm/amdkfd: Fix a race condition of vram buffer unref in svm code Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 035/372] drm/amd: Update `update_pcie_parameters` functions to use uint8_t arguments Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 036/372] drm/amd/display: use full update for clip size increase of large plane source Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 037/372] string.h: add array-wrappers for (v)memdup_user() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 038/372] kernel: kexec: copy user-array safely Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 039/372] kernel: watch_queue: " Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 040/372] drm_lease.c: " Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 041/372] drm: vmwgfx_surface.c: " Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 042/372] drm/msm/dp: skip validity check for DP CTS EDID checksum Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 043/372] drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7 Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 044/372] drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 045/372] drm/amdgpu: Fix potential null pointer derefernce Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 046/372] drm/panel: fix a possible null pointer dereference Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 047/372] drm/panel/panel-tpo-tpg110: " Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 048/372] drm/radeon: " Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 049/372] drm/amdgpu/vkms: " Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 050/372] drm/panel: st7703: Pick different reset sequence Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 051/372] drm/amdkfd: Fix shift out-of-bounds issue Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 052/372] drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 053/372] arm64: dts: ls208xa: use a pseudo-bus to constrain usb dma size Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 054/372] selftests/efivarfs: create-read: fix a resource leak Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 055/372] ASoC: soc-card: Add storage for PCI SSID Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 056/372] ASoC: SOF: Pass PCI SSID to machine driver Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 057/372] crypto: pcrypt - Fix hungtask for PADATA_RESET Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 058/372] ALSA: scarlett2: Move USB IDs out from device_info struct Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 059/372] ASoC: SOF: ipc4: handle EXCEPTION_CAUGHT notification from firmware Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 060/372] RDMA/hfi1: Use FIELD_GET() to extract Link Width Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 061/372] scsi: hisi_sas: Set debugfs_dir pointer to NULL after removing debugfs Greg Kroah-Hartman
2023-11-24 17:47 ` Greg Kroah-Hartman [this message]
2023-11-24 17:47 ` [PATCH 6.1 063/372] fs/jfs: Add check for negative db_l2nbperpage Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 064/372] fs/jfs: Add validity check for db_maxag and db_agpref Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 065/372] jfs: fix array-index-out-of-bounds in dbFindLeaf Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 066/372] jfs: fix array-index-out-of-bounds in diAlloc Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 067/372] HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 068/372] ARM: 9320/1: fix stack depot IRQ stack filter Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 069/372] ALSA: hda: Fix possible null-ptr-deref when assigning a stream Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 070/372] PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 071/372] PCI: mvebu: Use FIELD_PREP() with Link Width Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 072/372] atm: iphase: Do PCI error checks on own line Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 073/372] PCI: Do error check on own line to split long "if" conditions Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 074/372] scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 075/372] PCI: Use FIELD_GET() to extract Link Width Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 076/372] PCI: Extract ATS disabling to a helper function Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 077/372] PCI: Disable ATS for specific Intel IPU E2000 devices Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 078/372] misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 079/372] PCI: Use FIELD_GET() in Sapphire RX 5600 XT Pulse quirk Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 080/372] ASoC: Intel: soc-acpi-cht: Add Lenovo Yoga Tab 3 Pro YT3-X90 quirk Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 081/372] crypto: hisilicon/qm - prevent soft lockup in receive loop Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 082/372] HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 083/372] exfat: support handle zero-size directory Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 084/372] mfd: intel-lpss: Add Intel Lunar Lake-M PCI IDs Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 085/372] iio: adc: stm32-adc: harden against NULL pointer deref in stm32_adc_probe() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 086/372] thunderbolt: Apply USB 3.x bandwidth quirk only in software connection manager Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 087/372] tty: vcc: Add check for kstrdup() in vcc_probe() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 088/372] usb: dwc3: core: configure TX/RX threshold for DWC3_IP Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 089/372] soundwire: dmi-quirks: update HP Omen match Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 090/372] f2fs: fix error handling of __get_node_page Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 091/372] usb: gadget: f_ncm: Always set current gadget in ncm_bind() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.1 092/372] 9p/trans_fd: Annotate data-racy writes to file::f_flags Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 093/372] 9p: v9fs_listxattr: fix %s null argument warning Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 094/372] i3c: mipi-i3c-hci: Fix out of bounds access in hci_dma_irq_handler Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 095/372] i2c: fix memleak in i2c_new_client_device() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 096/372] i2c: sun6i-p2wi: Prevent potential division by zero Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 097/372] virtio-blk: fix implicit overflow on virtio_max_dma_size Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 098/372] i3c: master: mipi-i3c-hci: Fix a kernel panic for accessing DAT_data Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 099/372] media: gspca: cpia1: shift-out-of-bounds in set_flicker Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 100/372] media: vivid: avoid integer overflow Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 101/372] gfs2: ignore negated quota changes Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 102/372] gfs2: fix an oops in gfs2_permission Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 103/372] media: cobalt: Use FIELD_GET() to extract Link Width Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 104/372] media: ccs: Fix driver quirk struct documentation Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 105/372] media: imon: fix access to invalid resource for the second interface Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 106/372] drm/amd/display: Avoid NULL dereference of timing generator Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 107/372] kgdb: Flush console before entering kgdb on panic Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 108/372] i2c: dev: copy userspace array safely Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 109/372] ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 110/372] drm/qxl: prevent memory leak Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 111/372] ALSA: hda/realtek: Add quirk for ASUS UX7602ZM Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 112/372] drm/amdgpu: fix software pci_unplug on some chips Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 113/372] pwm: Fix double shift bug Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 114/372] mtd: rawnand: tegra: add missing check for platform_get_irq() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 115/372] wifi: iwlwifi: Use FW rate for non-data frames Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 116/372] sched/core: Optimize in_task() and in_interrupt() a bit Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 117/372] SUNRPC: ECONNRESET might require a rebind Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 118/372] mtd: rawnand: intel: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 119/372] mtd: rawnand: meson: " Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 120/372] NFSv4.1: fix handling NFS4ERR_DELAY when testing for session trunking Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 121/372] SUNRPC: Add an IS_ERR() check back to where it was Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 122/372] NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 123/372] SUNRPC: Fix RPC client cleaned up the freed pipefs dentries Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 124/372] gfs2: Silence "suspicious RCU usage in gfs2_permission" warning Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 125/372] vhost-vdpa: fix use after free in vhost_vdpa_probe() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 126/372] net: set SOCK_RCU_FREE before inserting socket into hashtable Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 127/372] ipvlan: add ipvlan_route_v6_outbound() helper Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 128/372] tty: Fix uninit-value access in ppp_sync_receive() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 129/372] net: hns3: fix add VLAN fail issue Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 130/372] net: hns3: add barrier in vf mailbox reply process Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 131/372] net: hns3: fix incorrect capability bit display for copper port Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 132/372] net: hns3: fix out-of-bounds access may occur when coalesce info is read via debugfs Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 133/372] net: hns3: fix variable may not initialized problem in hns3_init_mac_addr() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 134/372] net: hns3: fix VF reset fail issue Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 135/372] net: hns3: fix VF wrong speed and duplex issue Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 136/372] tipc: Fix kernel-infoleak due to uninitialized TLV value Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 137/372] net: mvneta: fix calls to page_pool_get_stats Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 138/372] ppp: limit MRU to 64K Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 139/372] xen/events: fix delayed eoi list handling Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 140/372] ptp: annotate data-race around q->head and q->tail Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 141/372] bonding: stop the device in bond_setup_by_slave() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 142/372] net: ethernet: cortina: Fix max RX frame define Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 143/372] net: ethernet: cortina: Handle large frames Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 144/372] net: ethernet: cortina: Fix MTU max setting Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 145/372] af_unix: fix use-after-free in unix_stream_read_actor() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 146/372] netfilter: nf_conntrack_bridge: initialize err to 0 Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 147/372] netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 148/372] net: stmmac: fix rx budget limit check Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 149/372] net: stmmac: avoid rx queue overrun Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 150/372] net/mlx5e: fix double free of encap_header Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 151/372] net/mlx5e: fix double free of encap_header in update funcs Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.1 152/372] net/mlx5e: Fix pedit endianness Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 153/372] net/mlx5e: Reduce the size of icosq_str Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 154/372] net/mlx5e: Check return value of snprintf writing to fw_version buffer Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 155/372] net/mlx5e: Check return value of snprintf writing to fw_version buffer for representors Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 156/372] macvlan: Dont propagate promisc change to lower dev in passthru Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 157/372] tools/power/turbostat: Fix a knl bug Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 158/372] tools/power/turbostat: Enable the C-state Pre-wake printing Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 159/372] cifs: spnego: add ; in HOST_KEY_LEN Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 160/372] cifs: fix check of rc in function generate_smb3signingkey Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 161/372] i915/perf: Fix NULL deref bugs with drm_dbg() calls Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 162/372] drivers: perf: Check find_first_bit() return value Greg Kroah-Hartman
2023-11-24 22:39   ` Nam Cao
2023-11-25 15:28     ` Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 163/372] media: venus: hfi: add checks to perform sanity on queue pointers Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 164/372] perf intel-pt: Fix async branch flags Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 165/372] powerpc/perf: Fix disabling BHRB and instruction sampling Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 166/372] randstruct: Fix gcc-plugin performance mode to stay in group Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 167/372] bpf: Fix check_stack_write_fixed_off() to correctly spill imm Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 168/372] bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 169/372] scsi: mpt3sas: Fix loop logic Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 170/372] scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for selected registers Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 171/372] scsi: qla2xxx: Fix system crash due to bad pointer access Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 172/372] crypto: x86/sha - load modules based on CPU features Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 173/372] x86/cpu/hygon: Fix the CPU topology evaluation for real Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 174/372] KVM: x86: hyper-v: Dont auto-enable stimer on write from user-space Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 175/372] KVM: x86: Ignore MSR_AMD64_TW_CFG access Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 176/372] KVM: x86: Clear bit12 of ICR after APIC-write VM-exit Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 177/372] audit: dont take task_lock() in audit_exe_compare() code path Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 178/372] audit: dont WARN_ON_ONCE(!current->mm) in audit_exe_compare() Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 179/372] proc: sysctl: prevent aliased sysctls from getting passed to init Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 180/372] tty/sysrq: replace smp_processor_id() with get_cpu() Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 181/372] tty: serial: meson: fix hard LOCKUP on crtscts mode Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 182/372] hvc/xen: fix console unplug Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 183/372] hvc/xen: fix error path in xen_hvc_init() to always register frontend driver Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 184/372] hvc/xen: fix event channel handling for secondary consoles Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 185/372] PCI/sysfs: Protect drivers D3cold preference from user space Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 186/372] mm/damon/sysfs: remove requested targets when online-commit inputs Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 187/372] mm/damon/sysfs: update monitoring target regions for online input commit Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 188/372] watchdog: move softlockup_panic back to early_param Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 189/372] mm/damon/lru_sort: avoid divide-by-zero in hot threshold calculation Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 190/372] mm/damon/ops-common: avoid divide-by-zero during region hotness calculation Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 191/372] mm/damon: implement a function for max nr_accesses safe calculation Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 192/372] mm/damon/sysfs: check error from damon_sysfs_update_target() Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 193/372] ACPI: resource: Do IRQ override on TongFang GMxXGxx Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 194/372] regmap: Ensure range selector registers are updated after cache sync Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 195/372] wifi: ath11k: fix temperature event locking Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 196/372] wifi: ath11k: fix dfs radar " Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 197/372] wifi: ath11k: fix htt pktlog locking Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 198/372] wifi: ath11k: fix gtk offload status event locking Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 199/372] mmc: meson-gx: Remove setting of CMD_CFG_ERROR Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 200/372] genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 201/372] KEYS: trusted: tee: Refactor register SHM usage Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 202/372] KEYS: trusted: Rollback init_trusted() consistently Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 203/372] PCI: keystone: Dont discard .remove() callback Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 204/372] PCI: keystone: Dont discard .probe() callback Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 205/372] arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 206/372] parisc/pdc: Add width field to struct pdc_model Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 207/372] parisc/power: Add power soft-off when running on qemu Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 208/372] clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 209/372] clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 210/372] clk: qcom: ipq6018: " Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 211/372] ksmbd: handle malformed smb1 message Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.1 212/372] ksmbd: fix slab out of bounds write in smb_inherit_dacl() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 213/372] mmc: vub300: fix an error code Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 214/372] mmc: sdhci_am654: fix start loop index for TAP value parsing Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 215/372] mmc: Add quirk MMC_QUIRK_BROKEN_CACHE_FLUSH for Micron eMMC Q2J54A Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 216/372] PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 217/372] PCI: kirin: Dont discard .remove() callback Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 218/372] PCI: exynos: " Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 219/372] wifi: wilc1000: use vmm_table as array in wilc struct Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 220/372] svcrdma: Drop connection after an RDMA Read error Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 221/372] rcu/tree: Defer setting of jiffies during stall reset Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 222/372] arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 223/372] PM: hibernate: Use __get_safe_page() rather than touching the list Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 224/372] PM: hibernate: Clean up sync_read handling in snapshot_write_next() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 225/372] rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 226/372] btrfs: dont arbitrarily slow down delalloc if were committing Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 227/372] arm64: dts: qcom: ipq8074: Fix hwlock index for SMEM Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 228/372] firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 229/372] ACPI: FPDT: properly handle invalid FPDT subtables Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 230/372] arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 231/372] mfd: qcom-spmi-pmic: Fix reference leaks in revid helper Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 232/372] mfd: qcom-spmi-pmic: Fix revid implementation Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 233/372] ima: annotate iint mutex to avoid lockdep false positive warnings Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 234/372] ima: detect changes to the backing overlay file Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 235/372] netfilter: nf_tables: remove catchall element in GC sync path Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 236/372] netfilter: nf_tables: split async and sync catchall in two functions Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 237/372] selftests/resctrl: Remove duplicate feature check from CMT test Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 238/372] selftests/resctrl: Move _GNU_SOURCE define into Makefile Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 239/372] selftests/resctrl: Reduce failures due to outliers in MBA/MBM tests Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 240/372] hid: lenovo: Resend all settings on reset_resume for compact keyboards Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 241/372] ASoC: codecs: wsa-macro: fix uninitialized stack variables with name prefix Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 242/372] jbd2: fix potential data lost in recovering journal raced with synchronizing fs bdev Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 243/372] quota: explicitly forbid quota files from being encrypted Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 244/372] kernel/reboot: emergency_restart: Set correct system_state Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 245/372] i2c: core: Run atomic i2c xfer when !preemptible Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 246/372] tracing: Have the user copy of synthetic event address use correct context Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 247/372] driver core: Release all resources during unbind before updating device links Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 248/372] mcb: fix error handling for different scenarios when parsing Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 249/372] powerpc/pseries/iommu: enable_ddw incorrectly returns direct mapping for SR-IOV device Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 250/372] dmaengine: stm32-mdma: correct desc prep when channel running Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 251/372] s390/cmma: fix initial kernel address space page table walk Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 252/372] s390/cmma: fix detection of DAT pages Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 253/372] s390/cmma: fix handling of swapper_pg_dir and invalid_pg_dir Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 254/372] mm/cma: use nth_page() in place of direct struct page manipulation Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 255/372] mm/memory_hotplug: use pfn math " Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 256/372] mtd: cfi_cmdset_0001: Byte swap OTP info Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 257/372] i3c: master: cdns: Fix reading status register Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 258/372] i3c: master: svc: fix race condition in ibi work thread Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 259/372] i3c: master: svc: fix wrong data return when IBI happen during start frame Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 260/372] i3c: master: svc: fix ibi may not return mandatory data byte Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 261/372] i3c: master: svc: fix check wrong status register in irq handler Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 262/372] i3c: master: svc: fix SDA keep low when polling IBIWON timeout happen Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 263/372] parisc: Prevent booting 64-bit kernels on PA1.x machines Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 264/372] parisc/pgtable: Do not drop upper 5 address bits of physical address Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 265/372] parisc/power: Fix power soft-off when running on qemu Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 266/372] xhci: Enable RPM on controllers that support low-power states Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 267/372] fs: add ctime accessors infrastructure Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 268/372] smb3: fix creating FIFOs when mounting with "sfu" mount option Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 269/372] smb3: fix touch -h of symlink Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 270/372] smb3: fix caching of ctime on setxattr Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 271/372] smb: client: fix use-after-free bug in cifs_debug_data_proc_show() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.1 272/372] smb: client: fix potential deadlock when releasing mids Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 273/372] cifs: reconnect helper should set reconnect for the right channel Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 274/372] cifs: force interface update before a fresh session setup Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 275/372] cifs: do not reset chan_max if multichannel is not supported at mount Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 276/372] xfs: recovery should not clear di_flushiter unconditionally Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 277/372] btrfs: zoned: wait for data BG to be finished on direct IO allocation Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 278/372] ALSA: info: Fix potential deadlock at disconnection Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 279/372] ALSA: hda/realtek: Enable Mute LED on HP 255 G8 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 280/372] ALSA: hda/realtek - Add Dell ALC295 to pin fall back table Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 281/372] ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 282/372] ALSA: hda/realtek: Enable Mute LED on HP 255 G10 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 283/372] ALSA: hda/realtek: Add quirks for HP Laptops Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 284/372] pmdomain: bcm: bcm2835-power: check if the ASB register is equal to enable Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 285/372] pmdomain: imx: Make imx pgc power domain also set the fwnode Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 286/372] cpufreq: stats: Fix buffer overflow detection in trans_stats() Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 287/372] clk: visconti: remove unused visconti_pll_provider::regmap Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 288/372] clk: visconti: Fix undefined behavior bug in struct visconti_pll_provider Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 289/372] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 290/372] bluetooth: Add device 0bda:887b to device tables Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 291/372] bluetooth: Add device 13d3:3571 " Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 292/372] Bluetooth: btusb: Add RTW8852BE device 13d3:3570 " Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 293/372] Bluetooth: btusb: Add 0bda:b85b for Fn-Link RTL8852BE Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 294/372] drm/amd/display: enable dsc_clk even if dsc_pg disabled Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 295/372] cxl/region: Validate region mode vs decoder mode Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 296/372] cxl/region: Cleanup target list on attach error Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 297/372] cxl/region: Move region-position validation to a helper Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 298/372] cxl/region: Do not try to cleanup after cxl_region_setup_targets() fails Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 299/372] i3c: master: svc: add NACK check after start byte sent Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 300/372] i3c: master: svc: fix random hot join failure since timeout error Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 301/372] cxl: Unify debug messages when calling devm_cxl_add_port() Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 302/372] cxl/mem: Move devm_cxl_add_endpoint() from cxl_core to cxl_mem Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 303/372] tools/testing/cxl: Define a fixed volatile configuration to parse Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 304/372] cxl/region: Fix x1 root-decoder granularity calculations Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 305/372] Revert ncsi: Propagate carrier gain/loss events to the NCSI controller Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 306/372] Revert "i2c: pxa: move to generic GPIO recovery" Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 307/372] lsm: fix default return value for vm_enough_memory Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 308/372] lsm: fix default return value for inode_getsecctx Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 309/372] sbsa_gwdt: Calculate timeout with 64-bit math Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 310/372] i2c: designware: Disable TX_EMPTY irq while waiting for block length byte Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 311/372] s390/ap: fix AP bus crash on early config change callback invocation Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 312/372] net: ethtool: Fix documentation of ethtool_sprintf() Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 313/372] net: dsa: lan9303: consequently nested-lock physical MDIO Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 314/372] net: phylink: initialize carrier state at creation Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 315/372] i2c: i801: fix potential race in i801_block_transaction_byte_by_byte Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 316/372] f2fs: do not return EFSCORRUPTED, but try to run online repair Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 317/372] f2fs: avoid format-overflow warning Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 318/372] media: lirc: drop trailing space from scancode transmit Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 319/372] media: sharp: fix sharp encoding Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 320/372] media: venus: hfi_parser: Add check to keep the number of codecs within range Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 321/372] media: venus: hfi: fix the check to handle session buffer requirement Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 322/372] media: venus: hfi: add checks to handle capabilities from firmware Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 323/372] media: ccs: Correctly initialise try compose rectangle Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 324/372] drm/mediatek/dp: fix memory leak on ->get_edid callback audio detection Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 325/372] drm/mediatek/dp: fix memory leak on ->get_edid callback error path Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 326/372] dm-verity: dont use blocking calls from tasklets Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 327/372] nfsd: fix file memleak on client_opens_release Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 328/372] LoongArch: Mark __percpu functions as always inline Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 329/372] riscv: mm: Update the comment of CONFIG_PAGE_OFFSET Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 330/372] riscv: correct pt_level name via pgtable_l5/4_enabled Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 331/372] riscv: kprobes: allow writing to x0 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.1 332/372] mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2 Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 333/372] mm: fix for negative counter: nr_file_hugepages Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 334/372] mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 335/372] mptcp: deal with large GSO size Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 336/372] mptcp: add validity check for sending RM_ADDR Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 337/372] mptcp: fix setsockopt(IP_TOS) subflow locking Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 338/372] r8169: fix network lost after resume on DASH systems Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 339/372] r8169: add handling DASH when DASH is disabled Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 340/372] mmc: sdhci-pci-gli: GL9750: Mask the replay timer timeout of AER Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 341/372] media: qcom: camss: Fix pm_domain_on sequence in probe Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 342/372] media: qcom: camss: Fix vfe_get() error jump Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 343/372] media: qcom: camss: Fix VFE-17x vfe_disable_output() Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 344/372] media: qcom: camss: Fix VFE-480 vfe_disable_output() Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 345/372] media: qcom: camss: Fix missing vfe_lite clocks check Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 346/372] media: qcom: camss: Fix invalid clock enable bit disjunction Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 347/372] media: qcom: camss: Fix csid-gen2 for test pattern generator Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 348/372] Revert "net: r8169: Disable multicast filter for RTL8168H and RTL8107E" Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 349/372] ext4: apply umask if ACL support is disabled Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 350/372] ext4: correct offset of gdb backup in non meta_bg group to update_backups Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 351/372] ext4: mark buffer new if it is unwritten to avoid stale data exposure Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 352/372] ext4: correct return value of ext4_convert_meta_bg Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 353/372] ext4: correct the start block of counting reserved clusters Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 354/372] ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 355/372] ext4: add missed brelse in update_backups Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 356/372] ext4: properly sync file size update after O_SYNC direct IO Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 357/372] drm/amd/pm: Handle non-terminated overdrive commands Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 358/372] drm/i915: Bump GLK CDCLK frequency when driving multiple pipes Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 359/372] drm/i915: Fix potential spectre vulnerability Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 360/372] drm/amd/pm: Fix error of MACO flag setting code Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 361/372] drm/amdgpu/smu13: drop compute workload workaround Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 362/372] drm/amdgpu: dont use pci_is_thunderbolt_attached() Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 363/372] drm/amdgpu: dont use ATRM for external devices Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 364/372] drm/amdgpu: fix error handling in amdgpu_bo_list_get() Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 365/372] drm/amdgpu: lower CS errors to debug severity Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 366/372] drm/amd/display: fix a NULL pointer dereference in amdgpu_dm_i2c_xfer() Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 367/372] drm/amd/display: Enable fast plane updates on DCN3.2 and above Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 368/372] drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 369/372] powerpc/powernv: Fix fortify source warnings in opal-prd.c Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 370/372] tracing: Have trace_event_file have ref counters Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 371/372] Input: xpad - add VID for Turtle Beach controllers Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.1 372/372] mmc: sdhci-pci-gli: GL9755: Mask the replay timer timeout of AER Greg Kroah-Hartman
2023-11-24 19:18 ` [PATCH 6.1 000/372] 6.1.64-rc1 review Naresh Kamboju
2023-11-25 15:30   ` Greg Kroah-Hartman
2023-11-24 22:25 ` Nam Cao
2023-11-25 11:19   ` Pavel Machek
2023-11-25 15:28   ` Greg Kroah-Hartman

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20231124172012.552103971@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=brking@linux.vnet.ibm.com \
    --cc=martin.petersen@oracle.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tyreld@linux.ibm.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