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,
	Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 240/444] serial: sh-sci: Update the suspend/resume support
Date: Mon,  2 Jun 2025 15:45:04 +0200	[thread overview]
Message-ID: <20250602134350.652874539@linuxfoundation.org> (raw)
In-Reply-To: <20250602134340.906731340@linuxfoundation.org>

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

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

From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>

[ Upstream commit 22a6984c5b5df8eab864d7f3e8b94d5a554d31ab ]

The Renesas RZ/G3S supports a power saving mode where power to most of the
SoC components is turned off. When returning from this power saving mode,
SoC components need to be re-configured.

The SCIFs on the Renesas RZ/G3S need to be re-configured as well when
returning from this power saving mode. The sh-sci code already configures
the SCIF clocks, power domain and registers by calling uart_resume_port()
in sci_resume(). On suspend path the SCIF UART ports are suspended
accordingly (by calling uart_suspend_port() in sci_suspend()). The only
missing setting is the reset signal. For this assert/de-assert the reset
signal on driver suspend/resume.

In case the no_console_suspend is specified by the user, the registers need
to be saved on suspend path and restore on resume path. To do this the
sci_console_save()/sci_console_restore() functions were added. There is no
need to cache/restore the status or FIFO registers. Only the control
registers. The registers that will be saved/restored on suspend/resume are
specified by the struct sci_suspend_regs data structure.

Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20250207113313.545432-1-claudiu.beznea.uj@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/tty/serial/sh-sci.c | 71 +++++++++++++++++++++++++++++++++++--
 1 file changed, 69 insertions(+), 2 deletions(-)

diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c
index 2434eb6e6847d..9da7adc4bd9f3 100644
--- a/drivers/tty/serial/sh-sci.c
+++ b/drivers/tty/serial/sh-sci.c
@@ -104,6 +104,15 @@ struct plat_sci_reg {
 	u8 offset, size;
 };
 
+struct sci_suspend_regs {
+	u16 scsmr;
+	u16 scscr;
+	u16 scfcr;
+	u16 scsptr;
+	u8 scbrr;
+	u8 semr;
+};
+
 struct sci_port_params {
 	const struct plat_sci_reg regs[SCIx_NR_REGS];
 	unsigned int fifosize;
@@ -134,6 +143,8 @@ struct sci_port {
 	struct dma_chan			*chan_tx;
 	struct dma_chan			*chan_rx;
 
+	struct reset_control		*rstc;
+
 #ifdef CONFIG_SERIAL_SH_SCI_DMA
 	struct dma_chan			*chan_tx_saved;
 	struct dma_chan			*chan_rx_saved;
@@ -153,6 +164,7 @@ struct sci_port {
 	int				rx_trigger;
 	struct timer_list		rx_fifo_timer;
 	int				rx_fifo_timeout;
+	struct sci_suspend_regs		suspend_regs;
 	u16				hscif_tot;
 
 	bool has_rtscts;
@@ -3325,6 +3337,7 @@ static struct plat_sci_port *sci_parse_dt(struct platform_device *pdev,
 	}
 
 	sp = &sci_ports[id];
+	sp->rstc = rstc;
 	*dev_id = id;
 
 	p->type = SCI_OF_TYPE(data);
@@ -3473,13 +3486,57 @@ static int sci_probe(struct platform_device *dev)
 	return 0;
 }
 
+static void sci_console_save(struct sci_port *s)
+{
+	struct sci_suspend_regs *regs = &s->suspend_regs;
+	struct uart_port *port = &s->port;
+
+	if (sci_getreg(port, SCSMR)->size)
+		regs->scsmr = sci_serial_in(port, SCSMR);
+	if (sci_getreg(port, SCSCR)->size)
+		regs->scscr = sci_serial_in(port, SCSCR);
+	if (sci_getreg(port, SCFCR)->size)
+		regs->scfcr = sci_serial_in(port, SCFCR);
+	if (sci_getreg(port, SCSPTR)->size)
+		regs->scsptr = sci_serial_in(port, SCSPTR);
+	if (sci_getreg(port, SCBRR)->size)
+		regs->scbrr = sci_serial_in(port, SCBRR);
+	if (sci_getreg(port, SEMR)->size)
+		regs->semr = sci_serial_in(port, SEMR);
+}
+
+static void sci_console_restore(struct sci_port *s)
+{
+	struct sci_suspend_regs *regs = &s->suspend_regs;
+	struct uart_port *port = &s->port;
+
+	if (sci_getreg(port, SCSMR)->size)
+		sci_serial_out(port, SCSMR, regs->scsmr);
+	if (sci_getreg(port, SCSCR)->size)
+		sci_serial_out(port, SCSCR, regs->scscr);
+	if (sci_getreg(port, SCFCR)->size)
+		sci_serial_out(port, SCFCR, regs->scfcr);
+	if (sci_getreg(port, SCSPTR)->size)
+		sci_serial_out(port, SCSPTR, regs->scsptr);
+	if (sci_getreg(port, SCBRR)->size)
+		sci_serial_out(port, SCBRR, regs->scbrr);
+	if (sci_getreg(port, SEMR)->size)
+		sci_serial_out(port, SEMR, regs->semr);
+}
+
 static __maybe_unused int sci_suspend(struct device *dev)
 {
 	struct sci_port *sport = dev_get_drvdata(dev);
 
-	if (sport)
+	if (sport) {
 		uart_suspend_port(&sci_uart_driver, &sport->port);
 
+		if (!console_suspend_enabled && uart_console(&sport->port))
+			sci_console_save(sport);
+		else
+			return reset_control_assert(sport->rstc);
+	}
+
 	return 0;
 }
 
@@ -3487,8 +3544,18 @@ static __maybe_unused int sci_resume(struct device *dev)
 {
 	struct sci_port *sport = dev_get_drvdata(dev);
 
-	if (sport)
+	if (sport) {
+		if (!console_suspend_enabled && uart_console(&sport->port)) {
+			sci_console_restore(sport);
+		} else {
+			int ret = reset_control_deassert(sport->rstc);
+
+			if (ret)
+				return ret;
+		}
+
 		uart_resume_port(&sci_uart_driver, &sport->port);
+	}
 
 	return 0;
 }
-- 
2.39.5




  parent reply	other threads:[~2025-06-02 14:17 UTC|newest]

Thread overview: 458+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-02 13:41 [PATCH 6.6 000/444] 6.6.93-rc1 review Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 001/444] gpio: pca953x: Split pca953x_restore_context() and pca953x_save_context() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 002/444] gpio: pca953x: Simplify code with cleanup helpers Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 003/444] gpio: pca953x: fix IRQ storm on system wake up Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 004/444] i2c: designware: Uniform initialization flow for polling mode Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 005/444] i2c: designware: Remove ->disable() callback Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 006/444] i2c: designware: Use temporary variable for struct device Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 007/444] i2c: designware: Fix an error handling path in i2c_dw_pci_probe() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 008/444] phy: renesas: rcar-gen3-usb2: Add support to initialize the bus Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 009/444] phy: renesas: rcar-gen3-usb2: Move IRQ request in probe Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 010/444] phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 011/444] phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 012/444] cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 013/444] nvmem: rockchip-otp: Move read-offset into variant-data Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 014/444] nvmem: rockchip-otp: add rk3576 variant data Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 015/444] nvmem: core: verify cells raw_len Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 016/444] nvmem: core: update raw_len if the bit reading is required Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 017/444] nvmem: qfprom: switch to 4-byte aligned reads Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 018/444] scsi: target: iscsi: Fix timeout on deleted connection Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 019/444] scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 020/444] virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 021/444] intel_th: avoid using deprecated page->mapping, index fields Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 022/444] dma-mapping: avoid potential unused data compilation warning Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 023/444] cgroup: Fix compilation issue due to cgroup_mutex not being exported Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 024/444] vhost_task: fix vhost_task_create() documentation Greg Kroah-Hartman
2025-06-03 12:18   ` Stefano Garzarella
2025-06-04  8:40     ` Greg Kroah-Hartman
2025-06-04  8:54       ` Stefano Garzarella
2025-06-02 13:41 ` [PATCH 6.6 025/444] vhost-scsi: protect vq->log_used with vq->mutex Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 026/444] scsi: mpi3mr: Add level check to control event logging Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 027/444] net: enetc: refactor bulk flipping of RX buffers to separate function Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 028/444] ima: process_measurement() needlessly takes inode_lock() on MAY_READ Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 029/444] drm/amdgpu: Allow P2P access through XGMI Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 030/444] selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 031/444] bpf: fix possible endless loop in BPF map iteration Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 032/444] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 033/444] kconfig: merge_config: use an empty file as initfile Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 034/444] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 035/444] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 036/444] cifs: Fix querying and creating MF symlinks over SMB1 Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 037/444] cifs: Fix negotiate retry functionality Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 038/444] smb: client: Store original IO parameters and prevent zero IO sizes Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 039/444] fuse: Return EPERM rather than ENOSYS from link() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 040/444] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 041/444] NFS: Dont allow waiting for exiting tasks Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 042/444] SUNRPC: " Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 043/444] arm64: Add support for HIP09 Spectre-BHB mitigation Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 044/444] tracing: Mark binary printing functions with __printf() attribute Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 045/444] ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 046/444] mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 047/444] mailbox: use error ret code of of_parse_phandle_with_args() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 048/444] riscv: Allow NOMMU kernels to access all of RAM Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 049/444] fbdev: fsl-diu-fb: add missing device_remove_file() Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 050/444] fbcon: Use correct erase colour for clearing in fbcon Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 051/444] fbdev: core: tileblit: Implement missing margin clearing for tileblit Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 052/444] cifs: add validation check for the fields in smb_aces Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 053/444] cifs: Fix establishing NetBIOS session for SMB2+ connection Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 054/444] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Greg Kroah-Hartman
2025-06-02 13:41 ` [PATCH 6.6 055/444] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 056/444] SUNRPC: rpcbind should never reset the port to the value 0 Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 057/444] spi-rockchip: Fix register out of bounds access Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 058/444] thermal/drivers/qoriq: Power down TMU on system suspend Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 059/444] dql: Fix dql->limit value when reset Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 060/444] lockdep: Fix wait context check on softirq for PREEMPT_RT Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 061/444] objtool: Properly disable uaccess validation Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 062/444] PCI: dwc: ep: Ensure proper iteration over outbound map windows Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 063/444] tools/build: Dont pass test log files to linker Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 064/444] pNFS/flexfiles: Report ENETDOWN as a connection error Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 065/444] PCI: vmd: Disable MSI remapping bypass under Xen Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 066/444] ext4: on a remount, only log the ro or r/w state when it has changed Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 067/444] libnvdimm/labels: Fix divide error in nd_label_data_init() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 068/444] mmc: host: Wait for Vdd to settle on card power off Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 069/444] wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2 Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 070/444] wifi: mt76: mt7996: revise TXS size Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 071/444] x86/stackprotector/64: Only export __ref_stack_chk_guard on CONFIG_SMP Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 072/444] x86/mm: Check return value from memblock_phys_alloc_range() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 073/444] i2c: qup: Vote for interconnect bandwidth to DRAM Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 074/444] i2c: pxa: fix call balance of i2c->clk handling routines Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 075/444] btrfs: make btrfs_discard_workfn() block_group ref explicit Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 076/444] btrfs: avoid linker error in btrfs_find_create_tree_block() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 077/444] btrfs: run btrfs_error_commit_super() early Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 078/444] btrfs: fix non-empty delayed iputs list on unmount due to async workers Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 079/444] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 080/444] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 081/444] drm/amd/display: Guard against setting dispclk low for dcn31x Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 082/444] i3c: master: svc: Fix missing STOP for master request Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 083/444] dlm: make tcp still work in multi-link env Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 084/444] um: Store full CSGSFS and SS register from mcontext Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 085/444] um: Update min_low_pfn to match changes in uml_reserved Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 086/444] ext4: reorder capability check last Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 087/444] hypfs_create_cpu_files(): add missing check for hypfs_mkdir() failure Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 088/444] scsi: st: Tighten the page format heuristics with MODE SELECT Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 089/444] scsi: st: ERASE does not change tape location Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 090/444] vfio/pci: Handle INTx IRQ_NOTCONNECTED Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 091/444] bpf: Return prog btf_id without capable check Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 092/444] jbd2: do not try to recover wiped journal Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 093/444] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 094/444] rtc: rv3032: fix EERD location Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 095/444] objtool: Fix error handling inconsistencies in check() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 096/444] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 097/444] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 098/444] bpf: Allow pre-ordering for bpf cgroup progs Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 099/444] kbuild: fix argument parsing in scripts/config Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 100/444] crypto: octeontx2 - suppress auth failure screaming due to negative tests Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 101/444] dm: restrict dm device size to 2^63-512 bytes Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 102/444] net/smc: use the correct ndev to find pnetid by pnetid table Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 103/444] xen: Add support for XenServer 6.1 platform device Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 104/444] pinctrl-tegra: Restore SFSEL bit when freeing pins Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 105/444] mfd: tps65219: Remove TPS65219_REG_TI_DEV_ID check Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 106/444] drm/amdgpu: Update SRIOV video codec caps Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 107/444] ASoC: sun4i-codec: support hp-det-gpios property Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 108/444] ext4: reject the data_err=abort option in nojournal mode Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 109/444] ext4: do not convert the unwritten extents if data writeback fails Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 110/444] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 111/444] posix-timers: Add cond_resched() to posix_timer_add() search loop Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 112/444] timer_list: Dont use %pK through printk() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 113/444] netfilter: conntrack: Bound nf_conntrack sysctl writes Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 114/444] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Greg Kroah-Hartman
2025-06-02 13:42 ` [PATCH 6.6 115/444] mmc: dw_mmc: add exynos7870 DW MMC support Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 116/444] mmc: sdhci: Disable SD card clock before changing parameters Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 117/444] usb: xhci: Dont change the status of stalled TDs on failed Stop EP Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 118/444] hwmon: (dell-smm) Increment the number of fans Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 119/444] printk: Check CON_SUSPEND when unblanking a console Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 120/444] wifi: iwlwifi: fix debug actions order Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 121/444] ipv6: save dontfrag in cork Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 122/444] drm/amd/display: remove minimum Dispclk and apply oem panel timing Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 123/444] drm/amd/display: calculate the remain segments for all pipes Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 124/444] drm/amd/display: Fix incorrect DPCD configs while Replay/PSR switch Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 125/444] gfs2: Check for empty queue in run_queue Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 126/444] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 127/444] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 128/444] iommu/amd/pgtbl_v2: Improve error handling Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 129/444] cpufreq: tegra186: Share policy per cluster Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 130/444] watchdog: aspeed: Update bootstatus handling Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 131/444] crypto: lzo - Fix compression buffer overrun Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 132/444] drm/amdkfd: Set per-process flags only once cik/vi Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 133/444] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 134/444] arm64: tegra: Resize aperture for the IGX PCIe C5 slot Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 135/444] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 136/444] ALSA: seq: Improve data consistency at polling Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 137/444] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 138/444] rtc: ds1307: stop disabling alarms on probe Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 139/444] ieee802154: ca8210: Use proper setters and getters for bitwise types Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 140/444] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 141/444] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 142/444] dm cache: prevent BUG_ON by blocking retries on failed device resumes Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 143/444] orangefs: Do not truncate file size Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 144/444] drm/gem: Test for imported GEM buffers with helper Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 145/444] net: phylink: use pl->link_interface in phylink_expects_phy() Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 146/444] remoteproc: qcom_wcnss: Handle platforms with only single power domain Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 147/444] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 148/444] drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 149/444] media: cx231xx: set device_caps for 417 Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 150/444] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 151/444] net: ethernet: ti: cpsw_new: populate netdev of_node Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 152/444] net: pktgen: fix mpls maximum labels list parsing Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 153/444] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 154/444] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 155/444] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 156/444] drm/rockchip: vop2: Add uv swap for cluster window Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 157/444] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 158/444] media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 159/444] clk: imx8mp: inform CCF of maximum frequency of clocks Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 160/444] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 161/444] hwmon: (gpio-fan) Add missing mutex locks Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 162/444] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 163/444] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 164/444] fpga: altera-cvp: Increase credit timeout Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 165/444] perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 166/444] soc: apple: rtkit: Use high prio work queue Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 167/444] soc: apple: rtkit: Implement OSLog buffers properly Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 168/444] wifi: ath12k: Report proper tx completion status to mac80211 Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 169/444] PCI: brcmstb: Expand inbound window size up to 64GB Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 170/444] PCI: brcmstb: Add a softdep to MIP MSI-X driver Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 171/444] firmware: arm_ffa: Set dma_mask for ffa devices Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 172/444] net/mlx5: Avoid report two health errors on same syndrome Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 173/444] selftests/net: have `gro.sh -t` return a correct exit code Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 174/444] drm/amdkfd: KFD release_work possible circular locking Greg Kroah-Hartman
2025-06-02 13:43 ` [PATCH 6.6 175/444] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 176/444] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 177/444] net: xgene-v2: remove incorrect ACPI_PTR annotation Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 178/444] bonding: report duplicate MAC address in all situations Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 179/444] wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 180/444] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 181/444] Octeontx2-af: RPM: Register driver with PCI subsys IDs Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 182/444] x86/build: Fix broken copy command in genimage.sh when making isoimage Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 183/444] drm/amd/display: handle max_downscale_src_width fail check Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 184/444] ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 185/444] ASoC: mediatek: mt8188: Add reference for dmic clocks Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 186/444] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 187/444] vhost-scsi: Return queue full for page alloc failures during copy Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 188/444] vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 189/444] cpuidle: menu: Avoid discarding useful information Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 190/444] media: adv7180: Disable test-pattern control on adv7180 Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 191/444] media: tc358746: improve calculation of the D-PHY timing registers Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 192/444] libbpf: Fix out-of-bound read Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 193/444] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 194/444] net/mlx5: Change POOL_NEXT_SIZE define value and make it global Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 195/444] x86/kaslr: Reduce KASLR entropy on most x86 systems Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 196/444] crypto: ahash - Set default reqsize from ahash_alg Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 197/444] crypto: skcipher - Zap type in crypto_alloc_sync_skcipher Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 198/444] MIPS: Use arch specific syscall name match function Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 199/444] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 200/444] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 201/444] clocksource: mips-gic-timer: Enable counter when CPUs start Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 202/444] scsi: mpt3sas: Send a diag reset if target reset fails Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 203/444] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 204/444] wifi: rtw88: Fix rtw_init_ht_cap() " Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 205/444] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 206/444] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 207/444] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 208/444] EDAC/ie31200: work around false positive build warning Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 209/444] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 210/444] drm/amd/display: Add support for disconnected eDP streams Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 211/444] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 212/444] RDMA/core: Fix best page size finding when it can cross SG entries Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 213/444] pmdomain: imx: gpcv2: use proper helper for property detection Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 214/444] can: c_can: Use of_property_present() to test existence of DT property Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 215/444] bpf: dont do clean_live_states when state->loop_entry->branches > 0 Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 216/444] eth: mlx4: dont try to complete XDP frames in netpoll Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 217/444] PCI: Fix old_size lower bound in calculate_iosize() too Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 218/444] ACPI: HED: Always initialize before evged Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 219/444] vxlan: Join / leave MC group after remote changes Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 220/444] media: test-drivers: vivid: dont call schedule in loop Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 221/444] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 222/444] net/mlx5: Apply rate-limiting to high temperature warning Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 223/444] firmware: arm_ffa: Reject higher major version as incompatible Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 224/444] ASoC: ops: Enforce platform maximum on initial value Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 225/444] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 226/444] ASoC: tas2764: Mark SW_RESET as volatile Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 227/444] ASoC: tas2764: Power up/down amp on mute ops Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 228/444] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 229/444] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 230/444] smack: recognize ipv4 CIPSO w/o categories Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 231/444] smack: Revert "smackfs: Added check catlen" Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 232/444] kunit: tool: Use qboot on QEMU x86_64 Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 233/444] media: i2c: imx219: Correct the minimum vblanking value Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 234/444] media: v4l: Memset argument to 0 before calling get_mbus_config pad op Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.6 235/444] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 236/444] clk: qcom: ipq5018: allow it to be bulid on arm32 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 237/444] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 238/444] x86/traps: Cleanup and robustify decode_bug() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 239/444] sched: Reduce the default slice to avoid tasks getting an extra tick Greg Kroah-Hartman
2025-06-02 13:45 ` Greg Kroah-Hartman [this message]
2025-06-02 13:45 ` [PATCH 6.6 241/444] phy: core: dont require set_mode() callback for phy_get_mode() to work Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 242/444] soundwire: amd: change the soundwire wake enable/disable sequence Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 243/444] drm/amdgpu: Set snoop bit for SDMA for MI series Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 244/444] drm/amd/display: Dont try AUX transactions on disconnected link Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 245/444] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 246/444] drm/amd/display: Update CR AUX RD interval interpretation Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 247/444] drm/amd/display: Initial psr_version with correct setting Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 248/444] drm/amd/display: Increase block_sequence array size Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 249/444] drm/amdgpu: enlarge the VBIOS binary size limit Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 250/444] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 251/444] scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 252/444] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 253/444] net/mlx5e: set the tx_queue_len for pfifo_fast Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 254/444] net/mlx5e: reduce rep rxq depth to 256 for ECPF Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 255/444] net/mlx5e: reduce the max log mpwrq sz for ECPF and reps Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 256/444] drm/v3d: Add clock handling Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 257/444] wifi: mac80211: dont unconditionally call drv_mgd_complete_tx() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 258/444] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 259/444] net: fec: Refactor MAC reset to function Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 260/444] powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 261/444] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 262/444] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 263/444] r8152: add vendor/device ID pair for Dell Alienware AW1022z Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 264/444] pstore: Change kmsg_bytes storage size to u32 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 265/444] leds: trigger: netdev: Configure LED blink interval for HW offload Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 266/444] ext4: dont write back data before punch hole in nojournal mode Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 267/444] ext4: remove writable userspace mappings before truncating page cache Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 268/444] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 269/444] wifi: rtw88: Fix __rtw_download_firmware() " Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 270/444] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 271/444] hwmon: (xgene-hwmon) use appropriate type for the latency value Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 272/444] f2fs: introduce f2fs_base_attr for global sysfs entries Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 273/444] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 274/444] net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 275/444] vxlan: Annotate FDB data races Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 276/444] ipv4: ip_gre: Fix set but not used warning in ipgre_err() if IPv4-only Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 277/444] r8169: dont scan PHY addresses > 0 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 278/444] bridge: mdb: Allow replace of a host-joined group Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 279/444] ice: treat dyn_allowed only as suggestion Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 280/444] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 281/444] rcu: handle unstable rdp in rcu_read_unlock_strict() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 282/444] rcu: fix header guard for rcu_all_qs() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 283/444] perf: Avoid the read if the count is already updated Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 284/444] ice: count combined queues using Rx/Tx count Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 285/444] net/mana: fix warning in the writer of client oob Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 286/444] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 287/444] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 288/444] scsi: st: Restore some drive settings after reset Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 289/444] wifi: ath12k: Avoid napi_sync() before napi_enable() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 290/444] HID: usbkbd: Fix the bit shift number for LED_KANA Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 291/444] arm64: zynqmp: add clock-output-names property in clock nodes Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 292/444] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 293/444] ASoC: rt722-sdca: Add some missing readable registers Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 294/444] drm/ast: Find VBIOS mode from regular display size Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.6 295/444] bpftool: Fix readlink usage in get_fd_type Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 296/444] firmware: arm_scmi: Relax duplicate name constraint across protocol ids Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 297/444] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 298/444] perf/amd/ibs: Fix ->config to sample period calculation for OP PMU Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 299/444] wifi: rtl8xxxu: retry firmware download on error Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 300/444] wifi: rtw88: Dont use static local variable in rtw8822b_set_tx_power_index_by_rate Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 301/444] wifi: rtw89: add wiphy_lock() to work that isnt held wiphy_lock() yet Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 302/444] spi: zynqmp-gqspi: Always acknowledge interrupts Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 303/444] regulator: ad5398: Add device tree support Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 304/444] wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 305/444] accel/qaic: Mask out SR-IOV PCI resources Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 306/444] wifi: ath9k: return by of_get_mac_address Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 307/444] wifi: ath12k: Fix end offset bit definition in monitor ring descriptor Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 308/444] drm: bridge: adv7511: fill stream capabilities Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 309/444] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 310/444] drm/panel-edp: Add Starry 116KHD024006 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 311/444] drm: Add valid clones check Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 312/444] ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 313/444] book3s64/radix: Fix compile errors when CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=n Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 314/444] pinctrl: meson: define the pull up/down resistor value as 60 kOhm Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 315/444] ASoC: cs42l43: Disable headphone clamps during type detection Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 316/444] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 317/444] ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 318/444] nvme-pci: add quirks for device 126f:1001 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 319/444] nvme-pci: add quirks for WDC Blue SN550 15b7:5009 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 320/444] nvmet-tcp: dont restore null sk_state_change Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 321/444] io_uring/fdinfo: annotate racy sq/cq head/tail reads Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 322/444] cifs: Fix and improve cifs_query_path_info() and cifs_query_file_info() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 323/444] cifs: Fix changing times and read-only attr over SMB1 smb_set_file_info() function Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 324/444] btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 325/444] btrfs: avoid NULL pointer dereference if no valid csum tree Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 326/444] tools: ynl-gen: validate 0 len strings from kernel Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 327/444] wifi: iwlwifi: add support for Killer on MTL Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 328/444] xenbus: Allow PVH dom0 a non-local xenstore Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 329/444] __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 330/444] soundwire: bus: Fix race on the creation of the IRQ domain Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 331/444] espintcp: remove encap socket caching to avoid reference leak Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 332/444] dmaengine: idxd: add wq driver name support for accel-config user tool Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 333/444] dmaengine: idxd: Fix allowing write() from different address spaces Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 334/444] kernel/fork: only call untrack_pfn_clear() on VMAs duplicated for fork() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 335/444] remoteproc: qcom_wcnss: Fix on platforms without fallback regulators Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 336/444] clk: sunxi-ng: d1: Add missing divider for MMC mod clocks Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 337/444] xfrm: Sanitize marks before insert Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 338/444] dmaengine: idxd: Fix ->poll() return value Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 339/444] dmaengine: fsl-edma: Fix return code for unhandled interrupts Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 340/444] Bluetooth: L2CAP: Fix not checking l2cap_chan security level Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 341/444] Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 342/444] bridge: netfilter: Fix forwarding of fragmented packets Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 343/444] ice: fix vf->num_mac count with port representors Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 344/444] ice: Fix LACP bonds without SRIOV environment Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 345/444] pinctrl: qcom/msm: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 346/444] pinctrl: qcom: switch to devm_register_sys_off_handler() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 347/444] net: dwmac-sun8i: Use parsed internal PHY address instead of 1 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 348/444] net: lan743x: Restore SGMII CTRL register on resume Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 349/444] io_uring: fix overflow resched cqe reordering Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 350/444] sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 351/444] octeontx2-pf: Add AF_XDP non-zero copy support Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 352/444] net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 353/444] octeontx2-af: Set LMT_ENA bit for APR table entries Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 354/444] octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.6 355/444] clk: s2mps11: initialise clk_hw_onecell_data::num before accessing ::hws[] in probe() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 356/444] crypto: algif_hash - fix double free in hash_accept Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 357/444] padata: do not leak refcount in reorder_work Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 358/444] can: slcan: allow reception of short error messages Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 359/444] can: bcm: add locking for bcm_op runtime updates Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 360/444] can: bcm: add missing rcu read protection for procfs content Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 361/444] ASoC: SOF: ipc4-control: Use SOF_CTRL_CMD_BINARY as numid for bytes_ext Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 362/444] ASoc: SOF: topology: connect DAI to a single DAI link Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 363/444] ASoC: SOF: ipc4-pcm: Delay reporting is only supported for playback direction Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 364/444] ALSA: pcm: Fix race of buffer access at PCM OSS layer Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 365/444] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 366/444] llc: fix data loss when reading from a socket in llc_ui_recvmsg() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 367/444] can: kvaser_pciefd: Continue parsing DMA buf after dropped RX Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 368/444] platform/x86: dell-wmi-sysman: Avoid buffer overflow in current_password_store() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 369/444] thermal: intel: x86_pkg_temp_thermal: Fix bogus trip temperature Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 370/444] drm/edid: fixed the bug that hdr metadata was not reset Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 371/444] smb: client: Fix use-after-free in cifs_fill_dirent Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 372/444] arm64: dts: marvell: uDPU: define pinctrl state for alarm LEDs Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 373/444] smb: client: Reset all search buffer pointers when releasing buffer Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 374/444] Revert "drm/amd: Keep display off while going into S4" Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 375/444] Input: xpad - add more controllers Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 376/444] memcg: always call cond_resched() after fn() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 377/444] mm/page_alloc.c: avoid infinite retries caused by cpuset race Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 378/444] Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection" Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 379/444] ksmbd: fix stream write failure Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 380/444] spi: spi-fsl-dspi: restrict register range for regmap access Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 381/444] spi: spi-fsl-dspi: Halt the module after a new message transfer Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 382/444] spi: spi-fsl-dspi: Reset SR flags before sending a new message Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 383/444] x86/boot: Compile boot code with -std=gnu11 too Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 384/444] highmem: add folio_test_partial_kmap() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 385/444] pds_core: Prevent possible adminq overflow/stuck condition Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 386/444] serial: sh-sci: Save and restore more registers Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 387/444] watchdog: aspeed: fix 64-bit division Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 388/444] pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 389/444] i3c: master: svc: Fix implicit fallthrough in svc_i3c_master_ibi_work() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 390/444] x86/mm/init: Handle the special case of device private pages in add_pages(), to not increase max_pfn and trigger dma_addressing_limited() bounce buffers bounce buffers Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 391/444] drm/gem: Internally test import_attach for imported objects Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 392/444] can: kvaser_pciefd: Force IRQ edge in case of nested IRQ Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 393/444] hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 394/444] btrfs: check folio mapping after unlock in relocate_one_folio() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 395/444] af_unix: Return struct unix_sock from unix_get_socket() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 396/444] af_unix: Run GC on only one CPU Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 397/444] af_unix: Try to run GC async Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 398/444] af_unix: Replace BUG_ON() with WARN_ON_ONCE() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 399/444] af_unix: Remove io_uring code for GC Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 400/444] af_unix: Remove CONFIG_UNIX_SCM Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 401/444] af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 402/444] af_unix: Allocate struct unix_edge " Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 403/444] af_unix: Link struct unix_edge when queuing skb Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 404/444] af_unix: Bulk update unix_tot_inflight/unix_inflight " Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 405/444] af_unix: Iterate all vertices by DFS Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 406/444] af_unix: Detect Strongly Connected Components Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 407/444] af_unix: Save listener for embryo socket Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 408/444] af_unix: Fix up unix_edge.successor " Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 409/444] af_unix: Save O(n) setup of Tarjans algo Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 410/444] af_unix: Skip GC if no cycle exists Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 411/444] af_unix: Avoid Tarjans algorithm if unnecessary Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 412/444] af_unix: Assign a unique index to SCC Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 413/444] af_unix: Detect dead SCC Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 414/444] af_unix: Replace garbage collection algorithm Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.6 415/444] af_unix: Remove lock dance in unix_peek_fds() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 416/444] af_unix: Try not to hold unix_gc_lock during accept() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 417/444] af_unix: Dont access successor in unix_del_edges() during GC Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 418/444] af_unix: Add dead flag to struct scm_fp_list Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 419/444] af_unix: Fix garbage collection of embryos carrying OOB with SCM_RIGHTS Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 420/444] af_unix: Fix uninit-value in __unix_walk_scc() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 421/444] arm64: dts: qcom: ipq9574: Add missing properties for cryptobam Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 422/444] arm64: dts: qcom: sm8350: Fix typo in pil_camera_mem node Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 423/444] arm64: dts: qcom: sm8450: Add missing properties for cryptobam Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 424/444] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 425/444] arm64: dts: ti: k3-am68-sk: Fix regulator hierarchy Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 426/444] net_sched: hfsc: Address reentrant enqueue adding class to eltree twice Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 427/444] perf/arm-cmn: Fix REQ2/SNP2 mixup Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 428/444] perf/arm-cmn: Initialise cmn->cpu earlier Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 429/444] coredump: fix error handling for replace_fd() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 430/444] coredump: hand a pidfd to the usermode coredump helper Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 431/444] dmaengine: idxd: cdev: Fix uninitialized use of sva in idxd_cdev_open Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 432/444] HID: quirks: Add ADATA XPG alpha wireless mouse support Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 433/444] nfs: dont share pNFS DS connections between net namespaces Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 434/444] platform/x86: thinkpad_acpi: Support also NEC Lavie X1475JAS Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 435/444] um: let make clean properly clean underlying SUBARCH as well Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 436/444] drm/amd/display: fix link_set_dpms_off multi-display MST corner case Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 437/444] phy: starfive: jh7110-usb: Fix USB 2.0 host occasional detection failure Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 438/444] spi: spi-sun4i: fix early activation Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 439/444] nvme-pci: add NVME_QUIRK_NO_DEEPEST_PS quirk for SOLIDIGM P44 Pro Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 440/444] NFS: Avoid flushing data while holding directory locks in nfs_rename() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 441/444] platform/x86: fujitsu-laptop: Support Lifebook S2110 hotkeys Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 442/444] platform/x86: thinkpad_acpi: Ignore battery threshold change event notification Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 443/444] net: ethernet: ti: am65-cpsw: Lower random mac address error print to info Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.6 444/444] ksmbd: use list_first_entry_or_null for opinfo_get_list() Greg Kroah-Hartman
2025-06-02 17:25 ` [PATCH 6.6 000/444] 6.6.93-rc1 review Peter Schneider
2025-06-02 17:29 ` Florian Fainelli
2025-06-03  6:10 ` Harshit Mogalapalli
2025-06-03  7:43 ` Ron Economos
2025-06-03  8:48 ` Naresh Kamboju
2025-06-03 17:11 ` Shuah Khan
2025-06-03 17:23 ` Mark Brown
2025-06-03 17:25 ` Miguel Ojeda
2025-06-03 20:29 ` Hardik Garg
2025-06-04  9:40 ` Jon Hunter

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20250602134350.652874539@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=claudiu.beznea.uj@bp.renesas.com \
    --cc=geert+renesas@glider.be \
    --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