public inbox for patches@lists.linux.dev
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev
Cc: Miri Korenblit <miriam.rachel.korenblit@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.18 257/752] wifi: iwlwifi: mvm: check the validity of noa_len
Date: Sat, 28 Feb 2026 12:39:28 -0500	[thread overview]
Message-ID: <20260228174750.1542406-257-sashal@kernel.org> (raw)
In-Reply-To: <20260228174750.1542406-1-sashal@kernel.org>

From: Miri Korenblit <miriam.rachel.korenblit@intel.com>

[ Upstream commit 1e3fb3c4a8e6c581d0f4533dba887fabf53d607d ]

Validate iwl_probe_resp_data_notif::noa_attr::len_low since we are using
its value to determine the noa_len, which is later used for the NoA
attribute.

Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20251110150012.99b663d9b424.I206fd54c990ca9e1160b9b94fa8be44e67bcc1b9@changeid
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
index 867807abde664..49ffc4ecee855 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
@@ -1761,6 +1761,20 @@ void iwl_mvm_probe_resp_data_notif(struct iwl_mvm *mvm,
 
 	mvmvif = iwl_mvm_vif_from_mac80211(vif);
 
+	/*
+	 * len_low should be 2 + n*13 (where n is the number of descriptors.
+	 * 13 is the size of a NoA descriptor). We can have either one or two
+	 * descriptors.
+	 */
+	if (IWL_FW_CHECK(mvm, notif->noa_active &&
+			 notif->noa_attr.len_low != 2 +
+			 sizeof(struct ieee80211_p2p_noa_desc) &&
+			 notif->noa_attr.len_low != 2 +
+			 sizeof(struct ieee80211_p2p_noa_desc) * 2,
+			 "Invalid noa_attr.len_low (%d)\n",
+			 notif->noa_attr.len_low))
+		return;
+
 	new_data = kzalloc(sizeof(*new_data), GFP_KERNEL);
 	if (!new_data)
 		return;
-- 
2.51.0


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

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

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=20260228174750.1542406-257-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=miriam.rachel.korenblit@intel.com \
    --cc=patches@lists.linux.dev \
    /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