public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Siddharth Vadapalli <s-vadapalli@ti.com>,
	kernel test robot <lkp@intel.com>, Arnd Bergmann <arnd@arndb.de>,
	Manivannan Sadhasivam <mani@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.19 517/844] PCI: j721e: Add config guards for Cadence Host and Endpoint library APIs
Date: Sat, 28 Feb 2026 12:27:10 -0500	[thread overview]
Message-ID: <20260228173244.1509663-518-sashal@kernel.org> (raw)
In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org>

From: Siddharth Vadapalli <s-vadapalli@ti.com>

[ Upstream commit 4b361b1e92be255ff923453fe8db74086cc7cf66 ]

Commit under Fixes enabled loadable module support for the driver under
the assumption that it shall be the sole user of the Cadence Host and
Endpoint library APIs. This assumption guarantees that we won't end up
in a case where the driver is built-in and the library support is built
as a loadable module.

With the introduction of [1], this assumption is no longer valid. The
SG2042 driver could be built as a loadable module, implying that the
Cadence Host library is also selected as a loadable module. However, the
pci-j721e.c driver could be built-in as indicated by CONFIG_PCI_J721E=y
due to which the Cadence Endpoint library is built-in. Despite the
library drivers being built as specified by their respective consumers,
since the 'pci-j721e.c' driver has references to the Cadence Host
library APIs as well, we run into a build error as reported at [0].

Fix this by adding config guards as a temporary workaround. The proper
fix is to split the 'pci-j721e.c' driver into independent Host and
Endpoint drivers as aligned at [2].

[0]: https://lore.kernel.org/r/202511111705.MZ7ls8Hm-lkp@intel.com/
[1]: commit 1c72774df028 ("PCI: sg2042: Add Sophgo SG2042 PCIe driver")
[2]: https://lore.kernel.org/r/37f6f8ce-12b2-44ee-a94c-f21b29c98821@app.fastmail.com/

Fixes: a2790bf81f0f ("PCI: j721e: Add support to build as a loadable module")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202511111705.MZ7ls8Hm-lkp@intel.com/
Suggested-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com>
Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Cc: stable@vger.kernel.org
Link: https://patch.msgid.link/20251117113246.1460644-1-s-vadapalli@ti.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/pci/controller/cadence/pci-j721e.c | 41 +++++++++++++---------
 1 file changed, 25 insertions(+), 16 deletions(-)

diff --git a/drivers/pci/controller/cadence/pci-j721e.c b/drivers/pci/controller/cadence/pci-j721e.c
index ecd1b03124006..6f2501479c701 100644
--- a/drivers/pci/controller/cadence/pci-j721e.c
+++ b/drivers/pci/controller/cadence/pci-j721e.c
@@ -620,9 +620,11 @@ static int j721e_pcie_probe(struct platform_device *pdev)
 			gpiod_set_value_cansleep(pcie->reset_gpio, 1);
 		}
 
-		ret = cdns_pcie_host_setup(rc);
-		if (ret < 0)
-			goto err_pcie_setup;
+		if (IS_ENABLED(CONFIG_PCI_J721E_HOST)) {
+			ret = cdns_pcie_host_setup(rc);
+			if (ret < 0)
+				goto err_pcie_setup;
+		}
 
 		break;
 	case PCI_MODE_EP:
@@ -632,9 +634,11 @@ static int j721e_pcie_probe(struct platform_device *pdev)
 			goto err_get_sync;
 		}
 
-		ret = cdns_pcie_ep_setup(ep);
-		if (ret < 0)
-			goto err_pcie_setup;
+		if (IS_ENABLED(CONFIG_PCI_J721E_EP)) {
+			ret = cdns_pcie_ep_setup(ep);
+			if (ret < 0)
+				goto err_pcie_setup;
+		}
 
 		break;
 	}
@@ -659,10 +663,11 @@ static void j721e_pcie_remove(struct platform_device *pdev)
 	struct cdns_pcie_ep *ep;
 	struct cdns_pcie_rc *rc;
 
-	if (pcie->mode == PCI_MODE_RC) {
+	if (IS_ENABLED(CONFIG_PCI_J721E_HOST) &&
+	    pcie->mode == PCI_MODE_RC) {
 		rc = container_of(cdns_pcie, struct cdns_pcie_rc, pcie);
 		cdns_pcie_host_disable(rc);
-	} else {
+	} else if (IS_ENABLED(CONFIG_PCI_J721E_EP)) {
 		ep = container_of(cdns_pcie, struct cdns_pcie_ep, pcie);
 		cdns_pcie_ep_disable(ep);
 	}
@@ -728,10 +733,12 @@ static int j721e_pcie_resume_noirq(struct device *dev)
 			gpiod_set_value_cansleep(pcie->reset_gpio, 1);
 		}
 
-		ret = cdns_pcie_host_link_setup(rc);
-		if (ret < 0) {
-			clk_disable_unprepare(pcie->refclk);
-			return ret;
+		if (IS_ENABLED(CONFIG_PCI_J721E_HOST)) {
+			ret = cdns_pcie_host_link_setup(rc);
+			if (ret < 0) {
+				clk_disable_unprepare(pcie->refclk);
+				return ret;
+			}
 		}
 
 		/*
@@ -741,10 +748,12 @@ static int j721e_pcie_resume_noirq(struct device *dev)
 		for (enum cdns_pcie_rp_bar bar = RP_BAR0; bar <= RP_NO_BAR; bar++)
 			rc->avail_ib_bar[bar] = true;
 
-		ret = cdns_pcie_host_init(rc);
-		if (ret) {
-			clk_disable_unprepare(pcie->refclk);
-			return ret;
+		if (IS_ENABLED(CONFIG_PCI_J721E_HOST)) {
+			ret = cdns_pcie_host_init(rc);
+			if (ret) {
+				clk_disable_unprepare(pcie->refclk);
+				return ret;
+			}
 		}
 	}
 
-- 
2.51.0


  parent reply	other threads:[~2026-02-28 17:41 UTC|newest]

Thread overview: 880+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-28 17:18 [PATCH 6.19 000/844] 6.19.6-rc1 review Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 001/844] rust_binder: Fix build failure if !CONFIG_COMPAT Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 002/844] mmc: rtsx_pci_sdmmc: increase power-on settling delay to 5ms Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 003/844] Revert "mmc: rtsx_pci_sdmmc: increase power-on settling delay to 5ms" Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 004/844] perf test: Fix test case perf evlist tests for s390x Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 005/844] perf test stat tests: Fix for virtualized machines Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 006/844] perf build: Raise minimum shellcheck version to 0.7.2 Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 007/844] perf unwind-libdw: Fix invalid reference counts Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 008/844] perf callchain: Fix srcline printing with inlines Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 009/844] libsubcmd: Fix null intersection case in exclude_cmds() Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 010/844] rtc: nvvrs: Add ARCH_TEGRA to the NV VRS RTC driver Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 011/844] rtc: max31335: use correct CONFIG symbol in IS_REACHABLE() Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 012/844] perf symbol-elf: Fix leak of ELF files with GNU debugdata Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 013/844] perf tools: Get debug info of DSO properly Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 014/844] perf tests kallsyms: Fix missed map__put() Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 015/844] perf cs-etm: Fix decoding for sparse CPU maps Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 016/844] perf annotate: Fix args leak of map_symbol Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 017/844] perf maps: Fix reference count leak in maps__find_ams() Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 018/844] perf tests sched: Avoid error in cleanup on loaded machines Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 019/844] perf annotate: Fix memcpy size in arch__grow_instructions() Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 020/844] tools headers: Go back to include asm-generic/unistd.h for arm64 Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 021/844] perf annotate: Fix BUILD_NONDISTRO=1 missing args->ms conversions to pointer Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 022/844] perf test: Fix test perf evlist for z/VM s390x Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 023/844] perf vendor events amd: Fix Zen 5 MAB allocation events Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 024/844] perf jevents: Handle deleted JSONS in out of source builds Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 025/844] perf build: Remove NO_LIBCAP that controls nothing Sasha Levin
2026-02-28 17:18 ` [PATCH 6.19 026/844] libperf build: Always place libperf includes first Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 027/844] perf metricgroup: Don't early exit if no CPUID table exists Sasha Levin
2026-03-09  7:40   ` Jiri Slaby
2026-03-09 13:40     ` Greg KH
2026-03-09 14:53       ` Ian Rogers
2026-03-09 14:57         ` Sasha Levin
2026-03-10  8:06           ` Jiri Slaby
2026-02-28 17:19 ` [PATCH 6.19 028/844] perf test: Fix test case perftool-testsuite_report for s390 Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 029/844] objtool/rust: add one more `noreturn` Rust function Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 030/844] perf stat: Ensure metrics are displayed even with failed events Sasha Levin
2026-03-02  7:09   ` Jiri Slaby
2026-03-02 13:59     ` Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 031/844] perf stat-shadow: In prepare_metric fix guard on reading NULL perf_stat_evsel Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 032/844] io_uring: add IORING_OP_URING_CMD128 to opcode checks Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 033/844] rtc: interface: Alarm race handling should not discard preceding error Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 034/844] statmount: permission check should return EPERM Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 035/844] hfsplus: fix volume corruption issue for generic/480 Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 036/844] audit: add fchmodat2() to change attributes class Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 037/844] hfsplus: fix volume corruption issue for generic/498 Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 038/844] fs/buffer: add alert in try_to_free_buffers() for folios without buffers Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 039/844] kselftest/kublk: include message in _Static_assert for C11 compatibility Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 040/844] hfs: Replace BUG_ON with error handling for CNID count checks Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 041/844] audit: add missing syscalls to read class Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 042/844] hfsplus: pretend special inodes as regular files Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 043/844] i3c: master: svc: Initialize 'dev' to NULL in svc_i3c_master_ibi_isr() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 044/844] i3c: mipi-i3c-hci: Stop reading Extended Capabilities if capability ID is 0 Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 045/844] i3c: mipi-i3c-hci: Reset RING_OPERATION1 fields during init Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 046/844] dlm: fix recovery pending middle conversion Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 047/844] minix: Add required sanity checking to minix_check_superblock() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 048/844] dlm: validate length in dlm_search_rsb_tree Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 049/844] btrfs: don't BUG() on unexpected delayed ref type in run_one_delayed_ref() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 050/844] btrfs: fallback to buffered IO if the data profile has duplication Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 051/844] btrfs: handle user interrupt properly in btrfs_trim_fs() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 052/844] netfs: when subreq is marked for retry, do not check if it faced an error Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 053/844] smb: client: add proper locking around ses->iface_last_update Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 054/844] gfs2: fiemap page fault fix Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 055/844] smb: client: prevent races in ->query_interfaces() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 056/844] tools/cpupower: Fix inverted APERF capability check Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 057/844] s390/boot: Add -Wno-default-const-init-unsafe to KBUILD_CFLAGS Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 058/844] tools/power cpupower: Reset errno before strtoull() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 059/844] s390/purgatory: Add -Wno-default-const-init-unsafe to KBUILD_CFLAGS Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 060/844] perf/arm-cmn: Support CMN-600AE Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 061/844] arm64: Add support for TSV110 Spectre-BHB mitigation Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 062/844] rnbd-srv: Zero the rsp buffer before using it Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 063/844] x86/xen/pvh: Enable PAE mode for 32-bit guest only when CONFIG_X86_PAE is set Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 064/844] ntfs: ->d_compare() must not block Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 065/844] EFI/CPER: don't dump the entire memory region Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 066/844] APEI/GHES: ensure that won't go past CPER allocated record Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 067/844] APEI/GHES: ARM processor Error: don't go past allocated memory Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 068/844] EFI/CPER: don't go past the ARM processor CPER record buffer Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 069/844] ACPI: processor: Fix NULL-pointer dereference in acpi_processor_errata_piix4() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 070/844] ACPI: resource: Add JWIPC JVC9100 to irq1_level_low_skip_override[] Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 071/844] ACPICA: Abort AML bytecode execution when executing AML_FATAL_OP Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 072/844] powercap: intel_rapl: Add PL4 support for Ice Lake Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 073/844] io_uring/timeout: annotate data race in io_flush_timeouts() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 074/844] alpha: fix user-space corruption during memory compaction Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 075/844] md-cluster: fix NULL pointer dereference in process_metadata_update Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 076/844] md raid: fix hang when stopping arrays with metadata through dm-raid Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 077/844] rust: cpufreq: always inline functions using build_assert with arguments Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 078/844] cpufreq: dt-platdev: Block the driver from probing on more QC platforms Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 079/844] s390/perf: Disable register readout on sampling events Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 080/844] arm64: mte: Set TCMA1 whenever MTE is present in the kernel Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 081/844] perf/cxlpmu: Replace IRQF_ONESHOT with IRQF_NO_THREAD Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 082/844] ACPI: x86: s2idle: Invoke Microsoft _DSM Function 9 (Turn On Display) Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 083/844] ACPI: scan: Use async schedule function in acpi_scan_clear_dep_fn() Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 084/844] ACPI: battery: fix incorrect charging status when current is zero Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 085/844] xenbus: Use .freeze/.thaw to handle xenbus devices Sasha Levin
2026-02-28 17:19 ` [PATCH 6.19 086/844] blk-mq-debugfs: add missing debugfs_mutex in blk_mq_debugfs_register_hctxs() Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 087/844] blk-mq-sched: unify elevators checking for async requests Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 088/844] block: decouple secure erase size limit from discard size limit Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 089/844] sparc: Synchronize user stack on fork and clone Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 090/844] sparc: don't reference obsolete termio struct for TC* constants Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 091/844] bpf: verifier improvement in 32bit shift sign extension pattern Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 092/844] irqchip/riscv-imsic: Add a CPU pm notifier to restore the IMSIC on exit Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 093/844] perf/x86/msr: Add Airmont NP Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 094/844] perf/x86/cstate: " Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 095/844] perf/x86/intel: " Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 096/844] gendwarfksyms: Fix build on 32-bit hosts Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 097/844] bpf: crypto: Use the correct destructor kfunc type Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 098/844] bpf: net_sched: " Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 099/844] bpf: Recognize special arithmetic shift in the verifier Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 100/844] genirq/cpuhotplug: Notify about affinity changes breaking the affinity mask Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 101/844] bpf: Properly mark live registers for indirect jumps Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 102/844] perf/core: Fix slow perf_event_task_exit() with LBR callstacks Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 103/844] arm64/ftrace,bpf: Fix partial regs after bpf_prog_run Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 104/844] clocksource/drivers/sh_tmu: Always leave device running after probe Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 105/844] clocksource/drivers/timer-integrator-ap: Add missing Kconfig dependency on OF Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 106/844] PCI/MSI: Unmap MSI-X region on error Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 107/844] bpftool: Fix dependencies for static build Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 108/844] crypto: hisilicon/qm - move the barrier before writing to the mailbox register Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 109/844] mailbox: bcm-ferxrm-mailbox: Use default primary handler Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 110/844] char: tpm: cr50: Remove IRQF_ONESHOT Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 111/844] sched/debug: Fix updating of ppos on server write ops Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 112/844] pstore: ram_core: fix incorrect success return when vmap() fails Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 113/844] firmware: arm_ffa: Unmap Rx/Tx buffers on init failure Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 114/844] Revert "arm64: zynqmp: Add an OP-TEE node to the device tree" Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 115/844] EDAC/igen6: Add more Intel Panther Lake-H SoCs support Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 116/844] EDAC/igen6: Add two Intel Amston Lake " Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 117/844] arm64: tegra: smaug: Add usb-role-switch support Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 118/844] soc: imx8m: Fix error handling for clk_prepare_enable() Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 119/844] soc/tegra: pmc: Fix unsafe generic_handle_irq() call Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 120/844] x86/sev: Use kfree_sensitive() when freeing a SNP message descriptor Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 121/844] parisc: Prevent interrupts during reboot Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 122/844] drm/xe/ggtt: Use scope-based runtime pm Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 123/844] drm/xe: Covert return of -EBUSY to -ENOMEM in VM bind IOCTL Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 124/844] drm/xe/vm: Skip ufence association for CPU address mirror VMA during MAP Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 125/844] drm/panthor: Always wait after sending a command to an AS Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 126/844] drm/xe/xe3_lpg: Apply Wa_16028005424 Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 127/844] drm/panel-edp: Add CSW MNE007QB3-1 Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 128/844] gpu/panel-edp: add AUO panel entry for B140HAN06.4 Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 129/844] accel/amdxdna: Fix tail-pointer polling in mailbox_get_msg() Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 130/844] drm/amdgpu: fix NULL pointer issue buffer funcs Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 131/844] drm/amdgpu: fix the calculation of RAS bad page number Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 132/844] drm/amdgpu/ras: Move ras data alloc before bad page check Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 133/844] drm/amd/display: Correct DSC padding accounting Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 134/844] drm/amd/display: Fix wrong x_pos and y_pos for cursor offload Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 135/844] drm/amd/display: Correct FIXED_VS Link Rate Toggle Condition Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 136/844] drm/amd/display: Guard FAMS2 configuration updates Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 137/844] drm/panel-edp: Add AUO B140QAX01.H panel Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 138/844] drm/amdkfd: Handle GPU reset and drain retry fault race Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 139/844] spi-geni-qcom: initialize mode related registers to 0 Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 140/844] spi-geni-qcom: use xfer->bits_per_word for can_dma() Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 141/844] spi: cadence-quadspi: Parse DT for flashes with the rest of the DT parsing Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 142/844] drm/amd/display: Fix DP no audio issue Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 143/844] drm/amd/display: Add USB-C DP Alt Mode lane limitation in DCN32 Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 144/844] drm/amd/display: Don't disable DPCD mst_en if sink connected Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 145/844] ASoC: SOF: ipc4: Support for sending payload along with LARGE_CONFIG_GET Sasha Levin
2026-02-28 17:20 ` [PATCH 6.19 146/844] media: dvb-core: dmxdevfilter must always flush bufs Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 147/844] gpio: pca953x: Add support for TCAL6408 TCAL6416 Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 148/844] spi: stm32: fix Overrun issue at < 8bpw Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 149/844] drm/ast: Swap framebuffer writes on big-endian machines Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 150/844] ALSA: hda/realtek - Enable Mute LED for Lenovo platform Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 151/844] drm/v3d: Set DMA segment size to avoid debug warnings Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 152/844] media: omap3isp: isp_video_mbus_to_pix/pix_to_mbus fixes Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 153/844] media: omap3isp: isppreview: always clamp in preview_try_format() Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 154/844] media: omap3isp: set initial format Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 155/844] media: chips-media: wave5: Fix conditional in start_streaming Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 156/844] media: chips-media: wave5: Process ready frames when CMD_STOP sent to Encoder Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 157/844] drm/panel: edp: add BOE NV140WUM-T08 panel Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 158/844] media: mediatek: vcodec: Don't try to decode 422/444 VP9 Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 159/844] drm/amdgpu: add support for HDP IP version 6.1.1 Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 160/844] drm/amd/display: Fix mismatched unlock for DMUB HW lock in HWSS fast path Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 161/844] drm/amd/display: Fix dsc eDP issue Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 162/844] drm/amdgpu: avoid a warning in timedout job handler Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 163/844] drm/amd/display: Add signal type check for dcn401 get_phyd32clk_src Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 164/844] drm/amdgpu: Refactor amdgpu_gem_va_ioctl for Handling Last Fence Update and Timeline Management v4 Sasha Levin
2026-03-02  8:24   ` Jiri Slaby
2026-03-02 13:58     ` Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 165/844] HID: apple: Add "SONiX KN85 Keyboard" to the list of non-apple keyboards Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 166/844] HID: pidff: Do not set out of range trigger button Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 167/844] HID: multitouch: add quirks for Lenovo Yoga Book 9i Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 168/844] drm/amdgpu: Skip loading SDMA_RS64 in VF Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 169/844] drm/amd/display: only power down dig on phy endpoints Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 170/844] drm/amd/display: Adjust PHY FSM transition to TX_EN-to-PLL_ON for TMDS on DCN35 Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 171/844] drm/xe: Only toggle scheduling in TDR if GuC is running Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 172/844] ASoC: wm8962: Add WM8962_ADC_MONOMIX to "3D Coefficients" mask Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 173/844] ASoC: wm8962: Don't report a microphone if it's shorted to ground on plug Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 174/844] spi: spi-mem: Limit octal DTR constraints to octal DTR situations Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 175/844] cgroup/cpuset: Don't fail cpuset.cpus change in v2 Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 176/844] media: amphion: Clear last_buffer_dequeued flag for DEC_CMD_START Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 177/844] drm/panel: Fix a possible null-pointer dereference in jdi_panel_dsi_remove() Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 178/844] media: adv7180: fix frame interval in progressive mode Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 179/844] media: pvrusb2: fix URB leak in pvr2_send_request_ex Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 180/844] media: solo6x10: Check for out of bounds chip_id Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 181/844] media: cx25821: Fix a resource leak in cx25821_dev_setup() Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 182/844] media: qcom: camss: Do not enable cpas fast ahb clock for SM8550 VFE lite Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 183/844] media: v4l2-async: Fix error handling on steps after finding a match Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 184/844] media: mt9m114: Avoid a reset low spike during probe() Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 185/844] media: mt9m114: Return -EPROBE_DEFER if no endpoint is found Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 186/844] media: ipu6: Ensure stream_mutex is acquired when dealing with node list Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 187/844] media: ipu6: Close firmware streams on streaming enable failure Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 188/844] media: ipu6: Always close firmware stream Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 189/844] ALSA: hda/realtek: add HP Victus 16-e0xxx mute LED quirk Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 190/844] ALSA: usb-audio: presonus s18xx uses little-endian Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 191/844] drm/amdkfd: Relax size checking during queue buffer get Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 192/844] drm/amdkfd: Fix GART PTE for non-4K pagesize in svm_migrate_gart_map() Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 193/844] drm: Account property blob allocations to memcg Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 194/844] drm: renesas: rz-du: mipi_dsi: fix kernel panic when rebooting for some panels Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 195/844] hyper-v: Mark inner union in hv_kvp_exchg_msg_value as packed Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 196/844] virt: vbox: uapi: Mark inner unions in packed structs " Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 197/844] ASoC: soc-acpi-intel-arl-match: change rt722 amp endpoint to aggregated Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 198/844] ASoC: soc-acpi-intel-ptl-match: use aggregated endpoint in ptl_rt722_l0_rt1320_l23 Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 199/844] ASoC: sdw_utils: remove dai registered check Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 200/844] drm/atmel-hlcdc: destroy properly the plane state in the reset callback Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 201/844] PCI: Add Intel Nova Lake audio Device ID Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 202/844] ALSA: hda: controllers: intel: add support for Nova Lake Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 203/844] drm/amd/display: Disable FEC when powering down encoders Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 204/844] drm/amd/display: Ensure link output is disabled in backend reset for PLL_ON Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 205/844] drm/amd/display: Revert "init dispclk from bootup clock for DCN314" Sasha Levin
2026-02-28 17:21 ` [PATCH 6.19 206/844] drm/atmel-hlcdc: fix memory leak from the atomic_destroy_state callback Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 207/844] drm/atmel-hlcdc: don't reject the commit if the src rect has fractional parts Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 208/844] drm/atmel-hlcdc: fix use-after-free of drm_crtc_commit after release Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 209/844] media: rkisp1: Fix filter mode register configuration Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 210/844] drm/amd/display: Revert "init dispclk from bootup clock for DCN315" Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 211/844] drm/amdgpu: mark invalid records with U64_MAX Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 212/844] HID: multitouch: add eGalaxTouch EXC3188 support Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 213/844] media: uvcvideo: Create an ID namespace for streaming output terminals Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 214/844] HID: elecom: Add support for ELECOM HUGE Plus M-HT1MRBK Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 215/844] ALSA: hda/conexant: Add headset mic fix for MECHREVO Wujie 15X Pro Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 216/844] ALSA: hda/realtek: fix LG Gram Style 14 speakers Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 217/844] gpio: aspeed-sgpio: Change the macro to support deferred probe Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 218/844] ASoC: sunxi: sun50i-dmic: Add missing check for devm_regmap_init_mmio Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 219/844] spi: spi-mem: Protect dirmap_create() with spi_mem_access_start/end Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 220/844] drm/amd/display: Fix GFX12 family constant checks Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 221/844] drm/amd/display: avoid dig reg access timeout on usb4 link training fail Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 222/844] spi: cadence-qspi: Fix probe error path and remove Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 223/844] drm/amdgpu: validate user queue size constraints Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 224/844] spi: cadence-qspi: Try hard to disable the clocks Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 225/844] drm/amd/pm: Fix null pointer dereference issue Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 226/844] ASoC: codecs: max98390: Check return value of devm_gpiod_get_optional() in max98390_i2c_probe() Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 227/844] hwmon: (asus-ec-sensors) add Pro WS TRX50-SAGE WIFI A Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 228/844] hwmon: (dell-smm) Add support for Dell OptiPlex 7080 Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 229/844] hwmon: (nct6775) Add ASUS Pro WS WRX90E-SAGE SE Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 230/844] hwmon: (nct6683) Add customer ID for ASRock Z590 Taichi Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 231/844] hwmon: (emc2305) Fix a resource leak in emc2305_of_parse_pwm_child Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 232/844] hwmon: (f71882fg) Add F81968 support Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 233/844] hwmon: (nct7363) Fix a resource leak in nct7363_present_pwm_fanin Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 234/844] HID: logitech-hidpp: Add support for Logitech K980 Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 235/844] ASoC: es8328: Add error unwind in resume Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 236/844] ALSA: hda/realtek: Add quirk for Minisforum V3 SE Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 237/844] modpost: Amend ppc64 save/restfpr symnames for -Os build Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 238/844] ASoC: qcom: q6asm: drop DSP responses for closed data streams Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 239/844] power: sequencing: fix missing state_lock in pwrseq_power_on() error path Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 240/844] ASoC: SOF: Intel: hda: Fix NULL pointer dereference Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 241/844] spi: geni-qcom: Fix abort sequence execution for serial engine errors Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 242/844] ASoC: fsl: imx-rpmsg: use snd_soc_find_dai_with_mutex() in probe Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 243/844] ALSA: hda/realtek - Enable mute LEDs on HP ENVY x360 15-es0xxx Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 244/844] ALSA: mixer: oss: Add card disconnect checkpoints Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 245/844] ALSA: ctxfi: Add quirk for SE-300PCIE variant (160b:0102) Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 246/844] ALSA: usb-audio: Add DSD support for iBasso DC04U Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 247/844] ALSA: usb-audio: Add iface reset and delay quirk for AB13X USB Audio Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 248/844] jfs: Add missing set_freezable() for freezable kthread Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 249/844] jfs: nlink overflow in jfs_rename Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 250/844] PCI: dwc: Skip PME_Turn_Off broadcast and L2/L3 transition during suspend if link is not up Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 251/844] wifi: rtw88: fix DTIM period handling when conf->dtim_period is zero Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 252/844] wifi: rtw89: 8852au: add support for TP TX30U Plus Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 253/844] wifi: rtw88: 8822b: Avoid WARNING in rtw8822b_config_trx_mode() Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 254/844] wifi: rtw88: rtw8821cu: Add ID for Mercusys MU6H Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 255/844] wifi: rtw89: 8922a: set random mac if efuse contains zeroes Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 256/844] wifi: rtw89: ser: enable error IMR after recovering from L1 Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 257/844] wifi: rtw89: setting TBTT AGG number when mac port initialization Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 258/844] wifi: rtw89: mcc: reset probe counter when receiving beacon Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 259/844] wifi: rtw88: Use devm_kmemdup() in rtw_set_supported_band() Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 260/844] wifi: rtw88: Fix inadvertent sharing of struct ieee80211_supported_band data Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 261/844] PCI: cadence: Avoid signed 64-bit truncation and invalid sort Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 262/844] wifi: rtw89: regd: 6 GHz power type marks default when inactive Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 263/844] dm: replace -EEXIST with -EBUSY Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 264/844] dm: remove fake timeout to avoid leak request Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 265/844] iommu/arm-smmu-v3: Improve CMDQ lock fairness and efficiency Sasha Levin
2026-02-28 17:22 ` [PATCH 6.19 266/844] net: wwan: mhi: Add network support for Foxconn T99W760 Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 267/844] wifi: rtw89: fix potential zero beacon interval in beacon tracking Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 268/844] rtla: Fix NULL pointer dereference in actions_parse Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 269/844] wifi: libertas: fix WARNING in usb_tx_block Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 270/844] iommu/amd: move wait_on_sem() out of spinlock Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 271/844] wifi: rtw89: Add support for MSI AX1800 Nano (GUAX18N) Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 272/844] wifi: rtw89: Add support for D-Link VR Air Bridge (DWA-F18) Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 273/844] wifi: rtw89: pci: validate sequence number of TX release report Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 274/844] wifi: rtw89: mac: correct page number for CSI response Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 275/844] wifi: rtw89: wow: add reason codes for disassociation in WoWLAN mode Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 276/844] PCI: dw-rockchip: Disable BAR 0 and BAR 1 for Root Port Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 277/844] wifi: rtw89: disable EHT protocol by chip capabilities Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 278/844] wifi: ath11k: add pm quirk for Thinkpad Z13/Z16 Gen1 Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 279/844] wifi: ath11k: Fix failure to connect to a 6 GHz AP Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 280/844] wifi: ath12k: fix preferred hardware mode calculation Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 281/844] wifi: ath12k: fix mac phy capability parsing Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 282/844] wifi: cfg80211: allow only one NAN interface, also in multi radio Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 283/844] ipv6: annotate data-races in ip6_multipath_hash_{policy,fields}() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 284/844] ipv6: annotate data-races over sysctl.flowlabel_reflect Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 285/844] ipv6: annotate data-races in net/ipv6/route.c Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 286/844] ipv6: exthdrs: annotate data-race over multiple sysctl Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 287/844] ext4: mark group add fast-commit ineligible Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 288/844] ext4: move ext4_percpu_param_init() before ext4_mb_init() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 289/844] ext4: mark group extend fast-commit ineligible Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 290/844] ext4: use reserved metadata blocks when splitting extent on endio Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 291/844] netfilter: nf_conntrack: Add allow_clash to generic protocol handler Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 292/844] netfilter: xt_tcpmss: check remaining length before reading optlen Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 293/844] openrisc: define arch-specific version of nop() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 294/844] net: usb: r8152: fix transmit queue timeout Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 295/844] PCI: imx6: Add CLKREQ# override to enable REFCLK for i.MX95 PCIe Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 296/844] wifi: iwlwifi: mld: Handle rate selection for NAN interface Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 297/844] wifi: iwlwifi: mvm: check the validity of noa_len Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 298/844] wifi: iwlwifi: fix 22000 series SMEM parsing Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 299/844] wifi: iwlwifi: mld: fix chandef start calculation Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 300/844] wifi: iwlwifi: mld: Fix primary link selection logic Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 301/844] driver core: faux: stop using static struct device Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 302/844] wifi: rtw89: Add default ID 28de:2432 for RTL8832CU Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 303/844] wifi: rtw89: fix unable to receive probe responses under MLO connection Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 304/844] wifi: rtw89: 8922a: add digital compensation for 2GHz Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 305/844] net/rds: No shortcut out of RDS_CONN_ERROR Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 306/844] ext4: propagate flags to convert_initialized_extent() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 307/844] gro: change the BUG_ON() in gro_pull_from_frag0() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 308/844] ipv4: igmp: annotate data-races around idev->mr_maxdelay Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 309/844] net: hns3: extend HCLGE_FD_AD_QID to 11 bits Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 310/844] wifi: cfg80211: treat deprecated INDOOR_SP_AP_OLD control value as LPI mode Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 311/844] wifi: iwlegacy: add missing mutex protection in il4965_store_tx_power() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 312/844] wifi: iwlegacy: add missing mutex protection in il3945_store_measurement() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 313/844] wifi: rtw89: pci: validate release report content before using for RTL8922DE Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 314/844] ipv4: fib: Annotate access to struct fib_alias.fa_state Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 315/844] Bluetooth: btusb: Add support for MediaTek7920 0489:e158 Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 316/844] Bluetooth: hci_qca: Fix SSR (SubSystem Restart) fail when BT_EN is pulled up by hw Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 317/844] Bluetooth: hci_conn: Set link_policy on incoming ACL connections Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 318/844] Bluetooth: btusb: Add USB ID 0489:e112 for Realtek 8851BE Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 319/844] Bluetooth: hci_conn: use mod_delayed_work for active mode timeout Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 320/844] Bluetooth: btusb: Add new VID/PID for RTL8852CE Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 321/844] Bluetooth: btusb: Add device ID for Realtek RTL8761BU Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 322/844] octeontx2-af: Workaround SQM/PSE stalls by disabling sticky Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 323/844] net: sfp: add quirk for Lantech 8330-265D Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 324/844] wifi: rtw89: pci: restore LDO setting after device resume Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 325/844] wifi: ath10k: fix lock protection in ath10k_wmi_event_peer_sta_ps_state_chg() Sasha Levin
2026-02-28 17:23 ` [PATCH 6.19 326/844] bnxt_en: Allow ntuple filters for drops Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 327/844] ptp: ptp_vmclock: add 'VMCLOCK' to ACPI device match Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 328/844] net: usb: sr9700: remove code to drive nonexistent multicast filter Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 329/844] vmw_vsock: bypass false-positive Wnonnull warning with gcc-16 Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 330/844] net/rds: Clear reconnect pending bit Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 331/844] PCI: Mark ASM1164 SATA controller to avoid bus reset Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 332/844] PCI/AER: Clear stale errors on reporting agents upon probe Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 333/844] PCI: Fix pci_slot_lock () device locking Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 334/844] PCI: Enable ACS after configuring IOMMU for OF platforms Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 335/844] PCI: Add ACS quirk for Qualcomm Hamoa & Glymur Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 336/844] PCI: Mark Nvidia GB10 to avoid bus reset Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 337/844] PCI/bwctrl: Disable BW controller on Intel P45 using a quirk Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 338/844] myri10ge: avoid uninitialized variable use Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 339/844] nfc: nxp-nci: remove interrupt trigger type Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 340/844] hisi_acc_vfio_pci: resolve duplicate migration states Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 341/844] RDMA/rtrs-clt: For conn rejection use actual err number Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 342/844] hisi_acc_vfio_pci: fix the queue parameter anomaly issue Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 343/844] um: Preserve errno within signal handler Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 344/844] ata: libata: avoid long timeouts on hot-unplugged SATA DAS Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 345/844] hisi_acc_vfio_pci: update status after RAS error Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 346/844] scsi: buslogic: Reduce stack usage Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 347/844] vhost: fix caching attributes of MMIO regions by setting them explicitly Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 348/844] scsi: ufs: mediatek: Fix page faults in ufs_mtk_clk_scale() trace event Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 349/844] riscv: vector: init vector context with proper vlenb Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 350/844] tracing: Fix false sharing in hwlat get_sample() Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 351/844] remoteproc: imx_dsp_rproc: Skip RP_MBOX_SUSPEND_SYSTEM when mailbox TX channel is uninitialized Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 352/844] mailbox: mchp-ipc-sbi: fix out-of-bounds access in mchp_ipc_get_cluster_aggr_irq() Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 353/844] mailbox: pcc: Remove spurious IRQF_ONESHOT usage Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 354/844] mailbox: imx: Skip the suspend flag for i.MX7ULP Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 355/844] mailbox: mchp-ipc-sbi: fix uninitialized symbol and other smatch warnings Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 356/844] mailbox: sprd: mask interrupts that are not handled Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 357/844] remoteproc: mediatek: Break lock dependency to `prepare_lock` Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 358/844] mailbox: sprd: clear delivery flag before handling TX done Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 359/844] clk: amlogic: remove potentially unsafe flags from S4 video clocks Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 360/844] clk: renesas: rzg2l: Deassert reset on assert timeout Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 361/844] clk: microchip: core: correct return value on *_get_parent() Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 362/844] HID: i2c-hid: Add FocalTech FT8112 Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 363/844] m68k: nommu: fix memmove() with differently aligned src and dest for 68000 Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 364/844] 9p/xen: protect xen_9pfs_front_free against concurrent calls Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 365/844] dmaengine: stm32-dma3: use module_platform_driver Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 366/844] soundwire: dmi-quirks: add mapping for Avell B.ON (OEM rebranded of NUC15) Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 367/844] soundwire: intel_auxdevice: add cs42l45 codec to wake_capable_list Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 368/844] staging: rtl8723bs: fix missing status update on sdio_alloc_irq() failure Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 369/844] serial: 8250_dw: handle clock enable errors in runtime_resume Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 370/844] usb: typec: ucsi: psy: Fix voltage and current max for non-Fixed PDOs Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 371/844] tty: vt/keyboard: Split apart vt_do_diacrit() Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 372/844] serial: rsci: Add set_rtrg() callback Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 373/844] fpga: of-fpga-region: Fail if any bridge is missing Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 374/844] most: core: fix resource leak in most_register_interface error paths Sasha Levin
2026-03-02  7:08   ` Jiri Slaby
2026-03-02 14:00     ` Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 375/844] dmaengine: sun6i: Choose appropriate burst length under maxburst Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 376/844] dmaengine: stm32-mdma: initialize m2m_hw_period and ccr to fix warnings Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 377/844] phy: ti: phy-j721e-wiz: restore mux selection during resume Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 378/844] phy: cadence-torrent: restore parent clock for refclk " Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 379/844] misc: bcm_vk: Fix possible null-pointer dereferences in bcm_vk_read() Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 380/844] pinctrl: mediatek: make devm allocations safer and clearer in mtk_eint_do_init() Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 381/844] misc: eeprom: Fix EWEN/EWDS/ERAL commands for 93xx56 and 93xx66 Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 382/844] misc: ti_fpc202: fix a potential memory leak in probe function Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 383/844] pinctrl: renesas: rzt2h: Allow .get_direction() for IRQ function GPIOs Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 384/844] iio: bmi270_i2c: Add MODULE_DEVICE_TABLE for BMI260/270 Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 385/844] usb: gadget: f_fs: fix DMA-BUF OUT queues Sasha Levin
2026-02-28 17:24 ` [PATCH 6.19 386/844] usb: gadget: f_fs: Fix ioctl error handling Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 387/844] usb: chipidea: udc: fix DMA and SG cleanup in _ep_nuke() Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 388/844] staging: rtl8723bs: fix memory leak on failure path Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 389/844] serial: 8250: 8250_omap.c: Add support for handling UART error conditions Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 390/844] serial: 8250: 8250_omap.c: Clear DMA RX running status only after DMA termination is done Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 391/844] fix it87_wdt early reboot by reporting running timer Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 392/844] binder: don't use %pK through printk Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 393/844] watchdog: imx7ulp_wdt: handle the nowayout option Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 394/844] watchdog: rzv2h_wdt: Discard pm_runtime_put() return value Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 395/844] phy: mvebu-cp110-utmi: fix dr_mode property read from dts Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 396/844] phy: fsl-imx8mq-usb: disable bind/unbind platform driver feature Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 397/844] Revert "mfd: da9052-spi: Change read-mask to write-mask" Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 398/844] mfd: intel-lpss: Add Intel Nova Lake-S PCI IDs Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 399/844] iio: Use IRQF_NO_THREAD Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 400/844] iio: magnetometer: Remove IRQF_ONESHOT Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 401/844] MIPS: Loongson: Make cpumask_of_node() robust against NUMA_NO_NODE Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 402/844] block: fix partial IOVA mapping cleanup in blk_rq_dma_map_iova Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 403/844] fs: ntfs3: check return value of indx_find to avoid infinite loop Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 404/844] fs: ntfs3: fix infinite loop in attr_load_runs_range on inconsistent metadata Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 405/844] fs: ntfs3: fix infinite loop triggered by zero-sized ATTR_LIST Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 406/844] fs/ntfs3: handle attr_set_size() errors when truncating files Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 407/844] fs/ntfs3: drop preallocated clusters for sparse and compressed files Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 408/844] ntfs3: fix circular locking dependency in run_unpack_ex Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 409/844] fs/ntfs3: avoid calling run_get_entry() when run == NULL in ntfs_read_run_nb_ra() Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 410/844] ceph: supply snapshot context in ceph_uninline_data() Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 411/844] libceph: define and enforce CEPH_MAX_KEY_LEN Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 412/844] thermal: int340x: Fix sysfs group leak on DLVR registration failure Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 413/844] ACPI: x86: Force enabling of PWM2 on the Yogabook YB1-X90 Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 414/844] include: uapi: netfilter_bridge.h: Cover for musl libc Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 415/844] ARM: 9467/1: mm: Don't use %pK through printk Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 416/844] drm/amd/display: Fix writeback on DCN 3.2+ Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 417/844] drm/amdgpu: Skip vcn poison irq release on VF Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 418/844] mshv: Ignore second stats page map result failure Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 419/844] x86/hyperv: Move hv crash init after hypercall pg setup Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 420/844] mshv: clear eventfd counter on irqfd shutdown Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 421/844] ASoC: rt721-sdca: Fix issue of fail to detect OMTP jack type Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 422/844] regulator: core: Remove regulator supply_name length limit Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 423/844] ALSA: hda/tas2781: Ignore reset check for SPI device Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 424/844] drm/amd/display: Fix system resume lag issue Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 425/844] drm/amd/display: Avoid updating surface with the same surface under MPO Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 426/844] drm/amdgpu: return when ras table checksum is error Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 427/844] drm/amdgpu: Adjust usleep_range in fence wait Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 428/844] ALSA: hda/realtek: Fix headset mic on ASUS Zenbook 14 UX3405MA Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 429/844] ALSA: usb-audio: Update the number of packets properly at receiving Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 430/844] drm/amd/display: set enable_legacy_fast_update to false for DCN36 Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 431/844] drm/amdgpu: Add HAINAN clock adjustment Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 432/844] drm/amd/display: bypass post csc for additional color spaces in dal Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 433/844] spi: spidev: fix lock inversion between spi_lock and buf_lock Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 434/844] drm/radeon: Add HAINAN clock adjustment Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 435/844] ALSA: usb-audio: Add sanity check for OOB writes at silencing Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 436/844] btrfs: replace BUG() with error handling in __btrfs_balance() Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 437/844] btrfs: do not ASSERT() when the fs flips RO inside btrfs_repair_io_failure() Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 438/844] ASoC: amd: amd_sdw: add machine driver quirk for Lenovo models Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 439/844] ALSA: hda/hdmi: Add quirk for TUXEDO IBS14G6 Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 440/844] arm64: hugetlbpage: avoid unused-but-set-parameter warning (gcc-16) Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 441/844] drm/amd/display: Remove conditional for shaper 3DLUT power-on Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 442/844] drm/amdgpu: avoid sdma ring reset in sriov Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 443/844] rtc: zynqmp: correct frequency value Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 444/844] ntb: ntb_hw_switchtec: Fix array-index-out-of-bounds access Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 445/844] ntb: ntb_hw_switchtec: Fix shift-out-of-bounds for 0 mw lut Sasha Levin
2026-02-28 17:25 ` [PATCH 6.19 446/844] iommu/amd: serialize sequence allocation under concurrent TLB invalidations Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 447/844] xfrm6: fix uninitialized saddr in xfrm6_get_saddr() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 448/844] xfrm: skip templates check for packet offload tunnel mode Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 449/844] ipmi: ipmb: initialise event handler read bytes Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 450/844] xfrm: always flush state and policy upon NETDEV_UNREGISTER event Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 451/844] writeback: Fix wakeup and logging timeouts for !DETECT_HUNG_TASK Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 452/844] tcp: fix potential race in tcp_v6_syn_recv_sock() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 453/844] psp: use sk->sk_hash in psp_write_headers() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 454/844] espintcp: Fix race condition in espintcp_close() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 455/844] net: usb: kaweth: remove TX queue manipulation in kaweth_set_rx_mode Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 456/844] net: usb: lan78xx: scan all MDIO addresses on LAN7801 Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 457/844] proc: Fix pointer error dereference Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 458/844] net: phy: qcom: qca807x: normalize return value of gpio_get Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 459/844] net: ethernet: xscale: Check for PTP support properly Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 460/844] udplite: Fix null-ptr-deref in __udp_enqueue_schedule_skb() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 461/844] bnxt_en: Fix RSS context delete logic Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 462/844] bnxt_en: Fix deleting of Ntuple filters Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 463/844] ovpn: tcp - fix packet extraction from stream Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 464/844] ksmbd: fix signededness bug in smb_direct_prepare_negotiation() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 465/844] dma-mapping: avoid random addr value print out on error path Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 466/844] sparc: Fix page alignment in dma mapping Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 467/844] wifi: cfg80211: wext: fix IGTK key ID off-by-one Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 468/844] wifi: brcmfmac: Fix potential kernel oops when probe fails Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 469/844] Remove WARN_ALL_UNSEEDED_RANDOM kernel config option Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 470/844] Bluetooth: L2CAP: Fix invalid response to L2CAP_ECRED_RECONF_REQ Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 471/844] Bluetooth: L2CAP: Fix result of L2CAP_ECRED_CONN_RSP when MTU is too short Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 472/844] Bluetooth: hci_qca: Cleanup on all setup failures Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 473/844] Bluetooth: L2CAP: Fix response to L2CAP_ECRED_CONN_REQ Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 474/844] Bluetooth: L2CAP: Fix not checking output MTU is acceptable on L2CAP_ECRED_CONN_REQ Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 475/844] Bluetooth: L2CAP: Fix missing key size check for L2CAP_LE_CONN_REQ Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 476/844] net: do not pass flow_id to set_rps_cpu() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 477/844] tls: Fix race condition in tls_sw_cancel_work_tx() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 478/844] kcm: fix zero-frag skb in frag_list on partial sendmsg error Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 479/844] dpll: zl3073x: fix REF_PHASE_OFFSET_COMP register width for some chip IDs Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 480/844] tipc: fix duplicate publication key in tipc_service_insert_publ() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 481/844] RDMA/core: Fix stale RoCE GIDs during netdev events at registration Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 482/844] RDMA/bng_re: Remove unnessary validity checks Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 483/844] RDMA/bng_re: Unwind bng_re_dev_init properly Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 484/844] net: wan: farsync: Fix use-after-free bugs caused by unfinished tasklets Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 485/844] netconsole: avoid OOB reads, msg is not nul-terminated Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 486/844] RDMA/ionic: Fix potential NULL pointer dereference in ionic_query_port Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 487/844] RDMA/efa: Fix typo in efa_alloc_mr() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 488/844] net: Drop the lock in skb_may_tx_timestamp() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 489/844] net: usb: pegasus: enable basic endpoint checking Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 490/844] erofs: fix interlaced plain identification for encoded extents Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 491/844] RDMA/umem: Fix double dma_buf_unpin in failure path Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 492/844] tcp: re-enable acceptance of FIN packets when RWIN is 0 Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 493/844] dpll: zl3073x: Remove redundant cleanup in devm_dpll_init() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 494/844] net: mana: Fix double destroy_workqueue on service rescan PCI path Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 495/844] team: avoid NETDEV_CHANGEMTU event when unregistering slave Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 496/844] net/mlx5: DR, Fix circular locking dependency in dump Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 497/844] net/mlx5: LAG, disable MPESW in lag_disable_change() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 498/844] net/mlx5: E-switch, Clear legacy flag when moving to switchdev Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 499/844] net/mlx5: Fix missing devlink lock in SRIOV enable error path Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 500/844] net/mlx5e: Fix "scheduling while atomic" in IPsec MAC address query Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 501/844] net: consume xmit errors of GSO frames Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 502/844] dpaa2-switch: validate num_ifs to prevent out-of-bounds write Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 503/844] netfilter: nf_conntrack_h323: fix OOB read in decode_choice() Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 504/844] x86/acpi/boot: Correct acpi_is_processor_usable() check again Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 505/844] rpmsg: core: fix race in driver_override_show() and use core helper Sasha Levin
2026-02-28 17:26 ` [PATCH 6.19 506/844] clk: renesas: rzg2l: Fix intin variable size Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 507/844] clk: renesas: rzg2l: Select correct div round macro Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 508/844] hfsplus: ensure sb->s_fs_info is always cleaned up Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 509/844] memory: mtk-smi: fix device leaks on common probe Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 510/844] memory: mtk-smi: fix device leak on larb probe Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 511/844] arm64: dts: ti: am62p-verdin: Fix SD regulator startup delay Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 512/844] drm/panthor: fix for dma-fence safe access rules Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 513/844] ASoC: SOF: ipc4-control: If there is no data do not send bytes update Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 514/844] ASoC: SOF: ipc4-topology: Correct the allocation size for bytes controls Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 515/844] ASoC: SOF: ipc4-control: Use the correct size for scontrol->ipc_control_data Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 516/844] ASoC: SOF: ipc4-control: Keep the payload size up to date Sasha Levin
2026-02-28 17:27 ` Sasha Levin [this message]
2026-02-28 17:27 ` [PATCH 6.19 518/844] fpga: dfl: use subsys_initcall to allow built-in drivers to be added Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 519/844] drm/tests: shmem: Swap names of export tests Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 520/844] drm/tests: shmem: Add clean-up action to unpin pages Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 521/844] drm/tests: shmem: Hold reservation lock around vmap/vunmap Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 522/844] drm/tests: shmem: Hold reservation lock around madvise Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 523/844] drm/tests: shmem: Hold reservation lock around purge Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 524/844] drm/xe: Fix ggtt fb alignment Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 525/844] Revert "PCI: dw-rockchip: Don't wait for link since we can detect Link Up" Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 526/844] PCI: dwc: Add L1 Substates context to ltssm_status of debugfs Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 527/844] PCI: dw-rockchip: Change get_ltssm() to provide L1 Substates info Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 528/844] Revert "PCI: dw-rockchip: Enumerate endpoints based on dll_link_up IRQ" Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 529/844] Revert "PCI: qcom: Don't wait for link if we can detect Link Up" Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 530/844] Revert "PCI: qcom: Enable MSI interrupts together with Link up if 'Global IRQ' is supported" Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 531/844] Revert "PCI: qcom: Enumerate endpoints based on Link up event in 'global_irq' interrupt" Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 532/844] Revert "PCI: dwc: Don't wait for link up if driver can detect Link Up event" Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 533/844] PCI: Use resource_set_range() that correctly sets ->end Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 534/844] net: qrtr: Drop the MHI auto_queue feature for IPCR DL channels Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 535/844] phy: qcom: edp: Make the number of clocks flexible Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 536/844] arm64: dts: qcom: sdm630: Add missing MDSS reset Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 537/844] dm-verity: correctly handle dm_bufio_client_create() failure Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 538/844] media: uvcvideo: Fix support for V4L2_CTRL_FLAG_HAS_WHICH_MIN_MAX Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 539/844] media: mediatek: encoder: Fix uninitialized scalar variable issue Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 540/844] media: mtk-mdp: Fix error handling in probe function Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 541/844] media: mtk-mdp: Fix a reference leak bug in mtk_mdp_remove() Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 542/844] media: chips-media: wave5: Fix PM runtime usage count underflow Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 543/844] media: chips-media: wave5: Fix kthread worker destruction in polling mode Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 544/844] media: chips-media: wave5: Fix device cleanup order to prevent kernel panic Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 545/844] media: chips-media: wave5: Fix SError of kernel panic when closed Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 546/844] media: chips-media: wave5: Fix Null reference while testing fluster Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 547/844] media: v4l2-mem2mem: Add a kref to the v4l2_m2m_dev structure Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 548/844] media: verisilicon: Avoid G2 bus error while decoding H.264 and HEVC Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 549/844] media: verisilicon: AV1: Fix enable cdef computation Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 550/844] media: verisilicon: AV1: Fix tx mode bit setting Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 551/844] arm64: dts: qcom: x1e80100: Add missing TCSR ref clock to the DP PHYs Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 552/844] arm64: dts: qcom: sm8750: Fix BAM DMA probing Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 553/844] ARM: omap2: Fix reference count leaks in omap_control_init() Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 554/844] arm64: kernel: initialize missing kexec_buf->random field Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 555/844] powerpc/pseries: Fix MSI-X allocation failure when quota is exceeded Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 556/844] KVM: x86: Return "unsupported" instead of "invalid" on access to unsupported PV MSR Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 557/844] KVM: nSVM: Remove a user-triggerable WARN on nested_svm_load_cr3() succeeding Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 558/844] arm64: Disable branch profiling for all arm64 code Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 559/844] pinctrl: meson: amlogic-a4: mark the GPIO controller as sleeping Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 560/844] HID: hid-pl: handle probe errors Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 561/844] HID: magicmouse: Do not crash on missing msc->input Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 562/844] HID: prodikeys: Check presence of pm->input_ep82 Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 563/844] HID: logitech-hidpp: Check maxfield in hidpp_get_report_length() Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 564/844] fs: ensure that internal tmpfs mount gets mount id zero Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 565/844] arm64: dts: apple: t8112-j473: Keep the HDMI port powered on Sasha Levin
2026-02-28 17:27 ` [PATCH 6.19 566/844] media: amphion: Drop min_queued_buffers assignment Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 567/844] media: rockchip: rga: Fix possible ERR_PTR dereference in rga_buf_init() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 568/844] media: verisilicon: AV1: Set IDR flag for intra_only frame type Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 569/844] media: tegra-video: Fix memory leak in __tegra_channel_try_format() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 570/844] media: radio-keene: fix memory leak in error path Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 571/844] media: cx88: Add missing unmap in snd_cx88_hw_params() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 572/844] media: cx23885: Add missing unmap in snd_cx23885_hw_params() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 573/844] media: cx25821: Add missing unmap in snd_cx25821_hw_params() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 574/844] media: i2c/tw9903: Fix potential memory leak in tw9903_probe() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 575/844] media: i2c/tw9906: Fix potential memory leak in tw9906_probe() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 576/844] media: i2c: ov01a10: Fix the horizontal flip control Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 577/844] media: i2c: ov01a10: Fix reported pixel-rate value Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 578/844] media: i2c: ov01a10: Fix analogue gain range Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 579/844] media: i2c: ov01a10: Add missing v4l2_subdev_cleanup() calls Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 580/844] media: i2c: ov01a10: Fix passing stream instead of pad to v4l2_subdev_state_get_format() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 581/844] media: i2c: ov01a10: Fix test-pattern disabling Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 582/844] media: qcom: camss: vfe: Fix out-of-bounds access in vfe_isr_reg_update() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 583/844] media: ccs: Avoid possible division by zero Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 584/844] media: i2c: ov5647: Initialize subdev before controls Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 585/844] media: i2c: ov5647: Correct pixel array offset Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 586/844] media: i2c: ov5647: Correct minimum VBLANK value Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 587/844] media: i2c: ov5647: Sensor should report RAW color space Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 588/844] media: i2c: ov5647: Fix PIXEL_RATE value for VGA mode Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 589/844] media: ccs: Fix setting initial sub-device state Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 590/844] media: i2c: ov5647: use our own mutex for the ctrl lock Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 591/844] media: dw9714: Fix powerup sequence Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 592/844] media: ipu6: Fix typo and wrong constant in ipu6-mmu.c Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 593/844] media: ipu6: Fix RPM reference leak in probe error paths Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 594/844] media: staging/ipu7: Ignore interrupts when device is suspended Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 595/844] media: staging/ipu7: Call synchronous RPM suspend in probe failure Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 596/844] media: staging/ipu7: Update CDPHY register settings Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 597/844] media: staging/ipu7: Fix the loop bound in l2 table alloc Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 598/844] platform/x86: ISST: Add missing write block check Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 599/844] platform/x86: ISST: Store and restore all domains data Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 600/844] KVM: x86: Ignore -EBUSY when checking nested events from vcpu_block() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 601/844] dm-integrity: fix a typo in the code for write/discard race Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 602/844] dm: clear cloned request bio pointer when last clone bio completes Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 603/844] drm/tegra: dsi: fix device leak on probe Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 604/844] soc: ti: k3-socinfo: Fix regmap leak on probe failure Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 605/844] soc: ti: pruss: Fix double free in pruss_clk_mux_setup() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 606/844] arm64: dts: ti: k3-am69-aquila: Change main_spi0/2 CS to GPIO mode Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 607/844] arm64: dts: ti: k3-am69-aquila-clover: Change main_spi2 CS0 " Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 608/844] KVM: nSVM: Always use vmcb01 in VMLOAD/VMSAVE emulation Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 609/844] bus: omap-ocp2scp: fix OF populate on driver rebind Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 610/844] clk: clk-apple-nco: Add "apple,t8103-nco" compatible Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 611/844] soc: rockchip: grf: Fix wrong RK3576_IOCGRF_MISC_CON definition Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 612/844] soc: rockchip: grf: Support multiple grf to be handled Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 613/844] media: stm32: dcmipp: avoid naming clock if only one is needed Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 614/844] media: stm32: dcmipp: bytecap: clear all interrupts upon stream stop Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 615/844] media: stm32: dcmipp: byteproc: disable compose for all bayers Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 616/844] media: i2c: ov01a10: Fix digital gain range Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 617/844] arm64: dts: rockchip: Fix SD card support for RK3576 EVB1 Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 618/844] arm64: dts: rockchip: Fix SD card support for RK3576 Nanopi R76s Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 619/844] x86/uprobes: Fix XOL allocation failure for 32-bit tasks Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 620/844] clk: tegra: tegra124-emc: Fix potential memory leak in tegra124_clk_register_emc() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 621/844] s390/pci: Handle futile config accesses of disabled devices directly Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 622/844] mailbox: Prevent out-of-bounds access in fw_mbox_index_xlate() Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 623/844] drm/i915/psr: Don't enable Panel Replay on sink if globally disabled Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 624/844] reset: gpio: suppress bind attributes in sysfs Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 625/844] dm-integrity: fix recalculation in bitmap mode Sasha Levin
2026-02-28 17:28 ` [PATCH 6.19 626/844] dm-unstripe: fix mapping bug when there are multiple targets in a table Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 627/844] rtc: pcf8563: use correct of_node for output clock Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 628/844] drm/tyr: fix register name in error print Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 629/844] arm64: dts: rockchip: Do not enable hdmi_sound node on Pinebook Pro Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 630/844] media: venus: vdec: fix error state assignment for zero bytesused Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 631/844] media: venus: vdec: restrict EOS addr quirk to IRIS2 only Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 632/844] Revert "media: iris: Add sanity check for stop streaming" Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 633/844] media: iris: Fix ffmpeg corrupted frame error Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 634/844] media: iris: Fix fps calculation Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 635/844] media: iris: use fallback size when S_FMT is called without width/height Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 636/844] media: iris: remove v4l2_m2m_ioctl_{de,en}coder_cmd API usage during STOP handling Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 637/844] media: iris: Add missing platform data entries for SM8750 Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 638/844] media: iris: Add buffer to list only after successful allocation Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 639/844] media: iris: Skip resolution set on first IPSC Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 640/844] media: iris: gen1: Destroy internal buffers after FW releases Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 641/844] media: iris: gen2: Add sanity check for session stop Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 642/844] media: iris: Prevent output buffer queuing before stream-on completes Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 643/844] drm: of: drm_of_panel_bridge_remove(): fix device_node leak Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 644/844] docs: kdoc: fix logic to handle unissued warnings Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 645/844] docs: kdoc: avoid error_count overflows Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 646/844] mm, page_alloc, thp: prevent reclaim for __GFP_THISNODE THP allocations Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 647/844] selftests/mm/charge_reserved_hugetlb: drop mount size for hugetlbfs Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 648/844] drm/buddy: Prevent BUG_ON by validating rounded allocation Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 649/844] drm/bridge: anx7625: Fix invalid EDID size Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 650/844] phy: fsl-imx8mq-usb: set platform driver data Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 651/844] PCI: dwc: Skip waiting for L2/L3 Ready if dw_pcie_rp::skip_l23_wait is true Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 652/844] xfs: mark data structures corrupt on EIO and ENODATA Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 653/844] xfs: remove xfs_attr_leaf_hasname Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 654/844] media: verisilicon: AV1: Fix tile info buffer size Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 655/844] dm: fix excessive blk-crypto operations for invalid keys Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 656/844] media: uvcvideo: Return queued buffers on start_streaming() failure Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 657/844] iommu/vt-d: Skip dev-iotlb flush for inaccessible PCIe device without scalable mode Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 658/844] iommu/vt-d: Flush dev-IOTLB only when PCIe device is accessible in " Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 659/844] iommu/vt-d: Flush piotlb for SVM and Nested domain Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 660/844] KVM: arm64: nv: Return correct RES0 bits for FGT registers Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 661/844] mfd: core: Add locking around 'mfd_of_node_list' Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 662/844] mfd: tps65219: Implement LOCK register handling for TPS65214 Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 663/844] mfd: macsmc: Initialize mutex Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 664/844] mfd: qcom-pm8xxx: Fix OF populate on driver rebind Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 665/844] mfd: omap-usb-host: " Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 666/844] erofs: fix incorrect early exits for invalid metabox-enabled images Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 667/844] erofs: fix incorrect early exits in volume label handling Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 668/844] arm64: dts: rockchip: Explicitly request UFS reset pin on RK3576 Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 669/844] arm64: dts: rockchip: Fix rk356x PCIe range mappings Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 670/844] arm64: dts: rockchip: Fix rk3588 " Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 671/844] PCI/PM: Prevent runtime suspend until devices are fully initialized Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 672/844] iio: accel: adxl380: Avoid reading more entries than present in FIFO Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 673/844] clk: tegra: tegra124-emc: fix device leak on set_rate() Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 674/844] iommu/arm-smmu-v3: Add update_safe bits to fix STE update sequence Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 675/844] iommu/arm-smmu-v3: Mark STE MEV safe when computing the " Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 676/844] iommu/arm-smmu-v3: Mark EATS_TRANS " Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 677/844] iommu/arm-smmu-v3: Do not set disable_ats unless vSTE is Translate Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 678/844] usb: host: tegra: Remove manual wake IRQ disposal Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 679/844] xfs: delete attr leaf freemap entries when empty Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 680/844] xfs: fix freemap adjustments when adding xattrs to leaf blocks Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 681/844] xfs: fix the xattr scrub to detect freemap/entries array collisions Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 682/844] xfs: fix remote xattr valuelblk check Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 683/844] xfs: get rid of the xchk_xfile_*_descr calls Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 684/844] spmi: apple: Add "apple,t8103-spmi" compatible Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 685/844] rust/drm: Fix Registration::{new,new_foreign_owned}() docs Sasha Levin
2026-02-28 17:29 ` [PATCH 6.19 686/844] KVM: x86: Add SRCU protection for reading PDPTRs in __get_sregs2() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 687/844] PCI: endpoint: Fix swapped parameters in pci_{primary/secondary}_epc_epf_unlink() functions Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 688/844] pinctrl: intel: Add code name documentation Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 689/844] xfs: only call xf{array,blob}_destroy if we have a valid pointer Sasha Levin
2026-03-02  7:06   ` Jiri Slaby
2026-03-02 14:03     ` Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 690/844] xfs: check return value of xchk_scrub_create_subord Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 691/844] xfs: check for deleted cursors when revalidating two btrees Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 692/844] md/bitmap: fix GPF in write_page caused by resize race Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 693/844] nfsd: fix nfs4_file refcount leak in nfsd_get_dir_deleg() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 694/844] NFSD: fix setting FMODE_NOCMTIME in nfs4_open_delegation Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 695/844] nfsd: fix return error code for nfsd_map_name_to_[ug]id Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 696/844] nvmem: Drop OF node reference on nvmem_add_one_cell() failure Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 697/844] PCI: Fix bridge window alignment with optional resources Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 698/844] ima: verify the previous kernel's IMA buffer lies in addressable RAM Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 699/844] of/kexec: refactor ima_get_kexec_buffer() to use ima_validate_range() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 700/844] x86/kexec: add a sanity check on previous kernel's ima kexec buffer Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 701/844] mm/vmalloc: prevent RCU stalls in kasan_release_vmalloc_node Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 702/844] usb: gadget: tegra-xudc: Add handling for BLCG_COREPLL_PWRDN Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 703/844] mm/slab: add rcu_barrier() to kvfree_rcu_barrier_on_cache() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 704/844] io_uring/net: don't continue send bundle if poll was required for retry Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 705/844] bus: fsl-mc: fix an error handling in fsl_mc_device_add() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 706/844] dm mpath: Add missing dm_put_device when failing to get scsi dh name Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 707/844] dm mpath: make pg_init_delay_msecs settable Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 708/844] arm64: poe: fix stale POR_EL0 values for ptrace Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 709/844] tools: Fix bitfield dependency failure Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 710/844] vhost: move vdpa group bound check to vhost_vdpa Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 711/844] ACPI: APEI: GHES: Add helper for CPER CXL protocol errors checks Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 712/844] ACPI: APEI: GHES: Disable KASAN instrumentation when compile testing with clang < 18 Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 713/844] powerpc/smp: Add check for kcalloc() failure in parse_thread_groups() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 714/844] iio: gyro: itg3200: Fix unchecked return value in read_raw Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 715/844] mtd: spinand: Disable continuous read during probe Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 716/844] power: reset: tdx-ec-poweroff: fix restart Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 717/844] mm/highmem: fix __kmap_to_page() build error Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 718/844] compiler-clang.h: require LLVM 19.1.0 or higher for __typeof_unqual__ Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 719/844] rapidio: replace rio_free_net() with kfree() in rio_scan_alloc_net() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 720/844] ocfs2: fix reflink preserve cleanup issue Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 721/844] kexec: derive purgatory entry from symbol Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 722/844] crash_dump: fix dm_crypt keys locking and ref leak Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 723/844] kho: skip memoryless NUMA nodes when reserving scratch areas Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 724/844] Revert "PCI/IOV: Add PCI rescan-remove locking when enabling/disabling SR-IOV" Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 725/844] PCI/IOV: Fix race between SR-IOV enable/disable and hotplug Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 726/844] arm64: Fix non-atomic __READ_ONCE() with CONFIG_LTO=y Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 727/844] uprobes: Fix incorrect lockdep condition in filter_chain() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 728/844] clk: rs9: Reserve 8 struct clk_hw slots for for 9FGV0841 Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 729/844] btrfs: fix periodic reclaim condition Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 730/844] btrfs: zoned: fixup last alloc pointer after extent removal for RAID1 Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 731/844] btrfs: zoned: fixup last alloc pointer after extent removal for DUP Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 732/844] btrfs: zoned: fixup last alloc pointer after extent removal for RAID0/10 Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 733/844] btrfs: continue trimming remaining devices on failure Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 734/844] iommupt: Always add IOVA range to iotlb_gather in gather_range_pages() Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 735/844] remoteproc: imx_rproc: Fix invalid loaded resource table detection Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 736/844] perf/arm-cmn: Reject unsupported hardware configurations Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 737/844] scsi: ufs: core: Flush exception handling work when RPM level is zero Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 738/844] mm/slab: avoid allocating slabobj_ext array from its own slab Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 739/844] mm/slab: use unsigned long for orig_size to ensure proper metadata align Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 740/844] PM: sleep: core: Avoid bit field races related to work_in_progress Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 741/844] MIPS: Loongson2ef: Register PCI controller in early stage Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 742/844] MIPS: Loongson2ef: Use pcibios_align_resource() to block io range Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 743/844] PCI: dwc: Fix msg_atu_index assignment Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 744/844] mux: mmio: fix regmap leak on probe failure Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 745/844] usb: dwc3: gadget: Move vbus draw to workqueue context Sasha Levin
2026-02-28 17:30 ` [PATCH 6.19 746/844] usb: dwc2: fix resume failure if dr_mode is host Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 747/844] mtd: rawnand: pl353: Fix software ECC support Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 748/844] tipc: fix RCU dereference race in tipc_aead_users_dec() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 749/844] drm/amdkfd: Fix out-of-bounds write in kfd_event_page_set() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 750/844] drm/amdgpu: Protect GPU register accesses in powergated state in some paths Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 751/844] drm/amdgpu: GPU vm support 5-level page table Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 752/844] drm/amdgpu: Use 5-level paging if gmc support 57-bit VA Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 753/844] net: cpsw_new: Fix unnecessary netdev unregistration in cpsw_probe() error path Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 754/844] net: cpsw_new: Fix potential unregister of netdev that has not been registered yet Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 755/844] PCI: Don't claim disabled bridge windows Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 756/844] PCI: Fix pci_slot_trylock() error handling Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 757/844] parisc: kernel: replace kfree() with put_device() in create_tree_node() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 758/844] mptcp: pm: in-kernel: always set ID as avail when rm endp Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 759/844] staging: rtl8723bs: fix null dereference in find_network Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 760/844] hwmon: (max16065) Use READ/WRITE_ONCE to avoid compiler optimization induced race Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 761/844] kcsan, compiler_types: avoid duplicate type issues in BPF Type Format Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 762/844] watchdog/softlockup: fix sample ring index wrap in need_counting_irqs() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 763/844] i2c: imx-lpi2c: fix SMBus block read NACK after byte count Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 764/844] cifs: Fix locking usage for tcon fields Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 765/844] MIPS: rb532: Fix MMIO UART resource registration Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 766/844] ceph: supply snapshot context in ceph_zero_partial_object() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 767/844] drm/i915/quirks: Fix device id for QUIRK_EDP_LIMIT_RATE_HBR2 entry Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 768/844] rust: kbuild: pass `-Zunstable-options` for Rust 1.95.0 Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 769/844] mm/slab: do not access current->mems_allowed_seq if !allow_spin Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 770/844] mm/slab: use prandom " Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 771/844] LoongArch: Make cpumask_of_node() robust against NUMA_NO_NODE Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 772/844] LoongArch: Prefer top-down allocation after arch_mem_init() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 773/844] LoongArch: Use %px to print unmodified unwinding address Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 774/844] LoongArch: Handle percpu handler address for ORC unwinder Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 775/844] LoongArch: Guard percpu handler under !CONFIG_PREEMPT_RT Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 776/844] LoongArch: Remove some extern variables in source files Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 777/844] LoongArch: Disable instrumentation for setup_ptwalker() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 778/844] net: ethernet: marvell: skge: remove incorrect conflicting PCI ID Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 779/844] net: wan/fsl_ucc_hdlc: Fix dma_free_coherent() in uhdlc_memclean() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 780/844] octeontx2-af: CGX: fix bitmap leaks Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 781/844] net: ti: icssg-prueth: Add optional dependency on HSR Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 782/844] net: macb: Fix tx/rx malfunction after phy link down and up Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 783/844] tracing: Fix to set write permission to per-cpu buffer_size_kb Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 784/844] tracing: Reset last_boot_info if ring buffer is reset Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 785/844] ceph: do not propagate page array emplacement errors as batch errors Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 786/844] ceph: fix write storm on fscrypted files Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 787/844] io_uring/filetable: clamp alloc_hint to the configured alloc range Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 788/844] io_uring/openclose: fix io_pipe_fixed() slot tracking for specific slots Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 789/844] drm/i915/dp: Fail state computation for invalid DSC source input BPP values Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 790/844] drm/i915/dp: Fix pipe BPP clamping due to HDR Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 791/844] drm/amd/display: Increase DCN35 SR enter/exit latency Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 792/844] drm/amdgpu: fix sync handling in amdgpu_dma_buf_move_notify Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 793/844] mm/hugetlb: restore failed global reservations to subpool Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 794/844] mm/page_alloc: skip debug_check_no_{obj,locks}_freed with FPI_TRYLOCK Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 795/844] procfs: fix possible double mmput() in do_procmap_query() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 796/844] mm/vmscan: fix demotion targets checks in reclaim/demotion Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 797/844] mm/page_alloc: clear page->private in free_pages_prepare() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 798/844] net: intel: fix PCI device ID conflict between i40e and ipw2200 Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 799/844] atm: fore200e: fix use-after-free in tasklets during device removal Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 800/844] function_graph: Restore direct mode when callbacks drop to one Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 801/844] kbuild: Fix CC_CAN_LINK detection Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 802/844] kbuild: rpm-pkg: Restrict manual debug package creation Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 803/844] kernel: rpm-pkg: Restore find-debuginfo.sh approach to -debuginfo package Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 804/844] kbuild: rpm-pkg: Fix manual debuginfo generation when using .src.rpm Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 805/844] ipv6: ioam: fix heap buffer overflow in __ioam6_fill_trace_data() Sasha Levin
2026-02-28 17:31 ` [PATCH 6.19 806/844] mm: numa_memblks: Identify the accurate NUMA ID of CFMW Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 807/844] fbdev: Use device_create_with_groups() to fix sysfs groups registration race Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 808/844] fbcon: check return value of con2fb_acquire_newinfo() Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 809/844] fbdev: vt8500lcdfb: fix missing dma_free_coherent() Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 810/844] fbdev: of: display_timing: fix refcount leak in of_get_display_timings() Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 811/844] fbdev: ffb: fix corrupted video output on Sun FFB1 Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 812/844] fbcon: Remove struct fbcon_display.inverse Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 813/844] io_uring/zcrx: fix sgtable leak on mapping failures Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 814/844] io_uring/zcrx: fix post open error handling Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 815/844] io_uring/zcrx: check unsupported flags on import Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 816/844] cifs: some missing initializations on replay Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 817/844] gpio: nomadik: Add missing IS_ERR() check Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 818/844] io_uring/cmd_net: fix too strict requirement on ioctl Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 819/844] ASoC: amd: yc: Add DMI quirk for ASUS Vivobook Pro 15X M6501RR Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 820/844] kbuild: rpm-pkg: Disable automatic requires for manual debuginfo package Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 821/844] net: arcnet: com20020-pci: fix support for 2.5Mbit cards Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 822/844] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 823/844] net: ethernet: ec_bhf: Fix dma_free_coherent() dma handle Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 824/844] net/sched: act_skbedit: fix divide-by-zero in tcf_skbedit_hash() Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 825/844] gpio: swnode: restore the swnode-name-against-chip-label matching Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 826/844] gpio: sysfs: fix chip removal with GPIOs exported over sysfs Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 827/844] x86/kexec: Copy ACPI root pointer address from config table Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 828/844] io_uring/zcrx: fix user_ref race between scrub and refill paths Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 829/844] rust: irq: add `'static` bounds to irq callbacks Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 830/844] rust: pin-init: replace clippy `expect` with `allow` Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 831/844] arm64: Force the use of CNTVCT_EL0 in __delay() Sasha Levin
2026-03-02  7:07   ` Jiri Slaby
2026-03-02 14:01     ` Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 832/844] drm/amd/display: Correct logic check error for fastboot Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 833/844] drm/amdgpu: keep vga memory on MacBooks with switchable graphics Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 834/844] net: nfc: nci: Fix parameter validation for packet data Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 835/844] ring-buffer: Fix possible dereference of uninitialized pointer Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 836/844] tracing: ring-buffer: Fix to check event length before using Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 837/844] fgraph: Do not call handlers direct when not using ftrace_ops Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 838/844] tracing: Fix checking of freed trace_event_file for hist files Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 839/844] tracing: Wake up poll waiters for hist files when removing an event Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 840/844] rust: list: Add unsafe blocks for container_of and safety comments Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 841/844] NTB: ntb_transport: Fix too small buffer for debugfs_name Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 842/844] ALSA: pcm: Revert bufs move in snd_pcm_xfern_frames_ioctl() Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 843/844] Revert "ACPI: processor: Update cpuidle driver check in __acpi_processor_start()" Sasha Levin
2026-02-28 17:32 ` [PATCH 6.19 844/844] Linux 6.19.6-rc1 Sasha Levin
2026-02-28 18:12 ` [PATCH 6.19 000/844] 6.19.6-rc1 review Ronald Warsow
2026-02-28 22:13   ` Woody Suwalski
2026-02-28 23:41     ` Barry K. Nathan
2026-03-01  0:33     ` Peter Schneider
2026-03-01  1:17     ` Sasha Levin
2026-03-01  2:46 ` Peter Schneider
2026-03-01  8:36 ` Takeshi Ogasawara
2026-03-01  8:49 ` Barry K. Nathan
2026-03-01 16:43   ` Barry K. Nathan
2026-03-02  0:49     ` Sasha Levin
2026-03-02  6:34       ` Barry K. Nathan
2026-03-01  8:54 ` Brett A C Sheffield
2026-03-01 12:05 ` Mark Brown
2026-03-01 15:15   ` Peter Schneider
2026-03-01 16:11     ` Sasha Levin
2026-03-01 16:20       ` Mark Brown
2026-03-01 21:49 ` Ron Economos
2026-03-01 23:48 ` Miguel Ojeda
2026-03-02  0:53 ` Hardik Garg
2026-03-02 13:13 ` 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=20260228173244.1509663-518-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=arnd@arndb.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=mani@kernel.org \
    --cc=s-vadapalli@ti.com \
    --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