From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: "Miquel Sabaté Solà" <mssola@mssola.com>,
"David Sterba" <dsterba@suse.com>,
"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.18 117/314] btrfs: define the AUTO_KFREE/AUTO_KVFREE helper macros
Date: Tue, 10 Mar 2026 07:16:16 -0400 [thread overview]
Message-ID: <9f467cc138e596e4c9f8e3e3d61ba27eb267bd4e.1773141555.git.sashal@kernel.org> (raw)
In-Reply-To: <cover.1773141554.git.sashal@kernel.org>
From: Miquel Sabaté Solà <mssola@mssola.com>
[ Upstream commit d00cbce0a7d5de5fc31bf60abd59b44d36806b6e ]
These are two simple macros which ensure that a pointer is initialized
to NULL and with the proper cleanup attribute for it.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Stable-dep-of: 52ee9965d09b ("btrfs: zoned: fixup last alloc pointer after extent removal for RAID0/10")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/btrfs/misc.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/fs/btrfs/misc.h b/fs/btrfs/misc.h
index 60f9b000d644b..a82032c66ccd3 100644
--- a/fs/btrfs/misc.h
+++ b/fs/btrfs/misc.h
@@ -13,6 +13,13 @@
#include <linux/rbtree.h>
#include <linux/bio.h>
+/*
+ * Convenience macros to define a pointer with the __free(kfree) and
+ * __free(kvfree) cleanup attributes and initialized to NULL.
+ */
+#define AUTO_KFREE(name) *name __free(kfree) = NULL
+#define AUTO_KVFREE(name) *name __free(kvfree) = NULL
+
/*
* Enumerate bits using enum autoincrement. Define the @name as the n-th bit.
*/
--
2.51.0
next prev parent reply other threads:[~2026-03-10 11:26 UTC|newest]
Thread overview: 334+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-10 11:19 [PATCH 6.18 000/314] 6.18.17-rc1 review Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 001/314] perf/core: Fix refcount bug and potential UAF in perf_mmap Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 002/314] drm/vmwgfx: Fix invalid kref_put callback in vmw_bo_dirty_release Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 003/314] drm/vmwgfx: Return the correct value in vmw_translate_ptr functions Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 004/314] debugobject: Make it work with deferred page initialization - again Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 005/314] drm/logicvc: Fix device node reference leak in logicvc_drm_config_parse() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 006/314] KVM: arm64: Hide S1POE from guests when not supported by the host Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 007/314] KVM: arm64: Fix ID register initialization for non-protected pKVM guests Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 008/314] drm/fourcc: fix plane order for 10/12/16-bit YCbCr formats Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 009/314] drm/tiny: sharp-memory: fix pointer error dereference Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 010/314] irqchip/sifive-plic: Fix frozen interrupt due to affinity setting Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 011/314] scsi: lpfc: Properly set WC for DPP mapping Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 012/314] scsi: pm8001: Fix use-after-free in pm8001_queue_command() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 013/314] drm/imx: parallel-display: check return value of devm_drm_bridge_add() in imx_pd_probe() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 014/314] ALSA: scarlett2: Fix DSP filter control array handling Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 015/314] ALSA: usb-audio: Remove VALIDATE_RATES quirk for Focusrite devices Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 016/314] ALSA: usb-audio: Add QUIRK_FLAG_SKIP_IFACE_SETUP Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 017/314] x86/fred: Correct speculative safety in fred_extint() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 018/314] x86/cfi: Fix CFI rewrite for odd alignments Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 019/314] sched/fair: Rename cfs_rq::avg_load to cfs_rq::sum_weight Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 020/314] sched/fair: Rename cfs_rq::avg_vruntime to ::sum_w_vruntime, and helper functions Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 021/314] sched/fair: Introduce and use the vruntime_cmp() and vruntime_op() wrappers for wrapped-signed aritmetics Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 022/314] sched/fair: Fix zero_vruntime tracking Sasha Levin
2026-03-11 16:14 ` Eric Hagberg
2026-03-12 16:49 ` Sasha Levin
2026-03-16 18:04 ` [PATCH] backport of "sched/fair: Fix zero_vruntime tracking" for 6.12 Eric Hagberg
2026-03-17 15:34 ` [PATCH 6.18 022/314] sched/fair: Fix zero_vruntime tracking Greg KH
2026-03-10 11:14 ` [PATCH 6.18 023/314] sched/fair: Only set slice protection at pick time Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 024/314] sched/eevdf: Update se->vprot in reweight_entity() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 025/314] sched/fair: Fix lag clamp Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 026/314] rseq: Clarify rseq registration rseq_size bound check comment Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 027/314] perf/core: Fix invalid wait context in ctx_sched_in() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 028/314] accel/amdxdna: Remove buffer size check when creating command BO Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 029/314] accel/amdxdna: Prevent ubuf size overflow Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 030/314] accel/amdxdna: Validate command buffer payload count Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 031/314] drm/xe/wa: Steer RMW of MCR registers while building default LRC Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 032/314] cgroup/cpuset: Fix incorrect use of cpuset_update_tasks_cpumask() in update_cpumasks_hier() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 033/314] cxl: Move devm_cxl_add_nvdimm_bridge() to cxl_pmem.ko Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 034/314] cxl: Fix race of nvdimm_bus object when creating nvdimm objects Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 035/314] scsi: ufs: core: Move link recovery for hibern8 exit failure to wl_resume Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 036/314] regulator: bq257xx: Fix device node reference leak in bq257xx_reg_dt_parse_gpio() Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 037/314] zloop: advertise a volatile write cache Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 038/314] zloop: check for spurious options passed to remove Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 039/314] drm/client: Do not destroy NULL modes Sasha Levin
2026-03-10 11:14 ` [PATCH 6.18 040/314] ALSA: usb-audio: Cap the packet size pre-calculations Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 041/314] ALSA: usb-audio: Use inclusive terms Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 042/314] perf: Fix __perf_event_overflow() vs perf_remove_from_context() race Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 043/314] s390/idle: Fix cpu idle exit cpu time accounting Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 044/314] s390/vtime: Fix virtual timer forwarding Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 045/314] arm64: io: Rename ioremap_prot() to __ioremap_prot() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 046/314] arm64: io: Extract user memory type in ioremap_prot() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 047/314] PCI: dwc: ep: Flush MSI-X write before unmapping its ATU entry Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 048/314] drm/amdgpu/userq: Do not allow userspace to trivially triger kernel warnings Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 049/314] drm/amdgpu: Unlock a mutex before destroying it Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 050/314] drm/amdgpu: Fix locking bugs in error paths Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 051/314] drm/amdgpu: Fix error handling in slot reset Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 052/314] ALSA: hda: cs35l56: Fix signedness error in cs35l56_hda_posture_put() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 053/314] btrfs: free pages on error in btrfs_uring_read_extent() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 054/314] btrfs: fix error message order of parameters in btrfs_delete_delayed_dir_index() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 055/314] btrfs: fix incorrect key offset in error message in check_dev_extent_item() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 056/314] btrfs: fix objectid value in error message in check_extent_data_ref() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 057/314] btrfs: fix warning in scrub_verify_one_metadata() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 058/314] btrfs: print correct subvol num if active swapfile prevents deletion Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 059/314] btrfs: fix compat mask in error messages in btrfs_check_features() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 060/314] ALSA: usb: qcom: Correct parameter comment for uaudio_transfer_buffer_setup() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 061/314] ASoC: SDCA: Fix comments for sdca_irq_request() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 062/314] bpf, arm64: Force 8-byte alignment for JIT buffer to prevent atomic tearing Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 063/314] bpf: Fix stack-out-of-bounds write in devmap Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 064/314] selftests/bpf: Fix OOB read in dmabuf_collector Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 065/314] sched_ext: Fix SCX_EFLAG_INITIALIZED being a no-op flag Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 066/314] spi: stm32: fix missing pointer assignment in case of dma chaining Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 067/314] PCI: Correct PCI_CAP_EXP_ENDPOINT_SIZEOF_V2 value Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 068/314] bpf: Fix race in cpumap on PREEMPT_RT Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 069/314] bpf: Fix race in devmap " Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 070/314] bpf: Add bitwise tracking for BPF_END Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 071/314] bpf: Introduce tnum_step to step through tnum's members Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 072/314] bpf: Improve bounds when tnum has a single possible value Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 073/314] x86/acpi/boot: Correct acpi_is_processor_usable() check again Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 074/314] memory: mtk-smi: fix device leaks on common probe Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 075/314] memory: mtk-smi: fix device leak on larb probe Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 076/314] PCI: j721e: Use devm_clk_get_optional_enabled() to get and enable the clock Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 077/314] PCI: j721e: Add config guards for Cadence Host and Endpoint library APIs Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 078/314] PCI: dwc: Advertise L1 PM Substates only if driver requests it Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 079/314] PCI: dw-rockchip: Configure L1SS support Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 080/314] PCI: dwc: Add L1 Substates context to ltssm_status of debugfs Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 081/314] PCI: dw-rockchip: Change get_ltssm() to provide L1 Substates info Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 082/314] Revert "PCI: dw-rockchip: Enumerate endpoints based on dll_link_up IRQ" Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 083/314] net: qrtr: Drop the MHI auto_queue feature for IPCR DL channels Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 084/314] media: v4l2-mem2mem: Add a kref to the v4l2_m2m_dev structure Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 085/314] media: verisilicon: Avoid G2 bus error while decoding H.264 and HEVC Sasha Levin
2026-03-11 0:36 ` Sebastian Krzyszkowiak
2026-03-11 1:15 ` Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 086/314] usb: gadget: u_ether: add gether_opts for config caching Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 087/314] usb: gadget: u_ether: Add auto-cleanup helper for freeing net_device Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 088/314] usb: gadget: f_ncm: align net_device lifecycle with bind/unbind Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 089/314] accel/rocket: fix unwinding in error path in rocket_core_init Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 090/314] accel/rocket: fix unwinding in error path in rocket_probe Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 091/314] media: tegra-video: Fix memory leak in __tegra_channel_try_format() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 092/314] KVM: x86: Ignore -EBUSY when checking nested events from vcpu_block() Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 093/314] drm/tegra: dsi: fix device leak on probe Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 094/314] unwind: Simplify unwind_user_next_fp() alignment check Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 095/314] unwind: Implement compat fp unwind Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 096/314] unwind_user/x86: Enable frame pointer unwinding on x86 Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 097/314] unwind_user/x86: Teach FP unwind about start of function Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 098/314] x86/uprobes: Fix XOL allocation failure for 32-bit tasks Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 099/314] ext4: correct the comments place for EXT4_EXT_MAY_ZEROOUT Sasha Levin
2026-03-10 11:15 ` [PATCH 6.18 100/314] ext4: don't set EXT4_GET_BLOCKS_CONVERT when splitting before submitting I/O Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 101/314] media: iris: remove v4l2_m2m_ioctl_{de,en}coder_cmd API usage during STOP handling Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 102/314] media: iris: Add missing platform data entries for SM8750 Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 103/314] Input: synaptics_i2c - replace use of system_wq with system_dfl_wq Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 104/314] Input: synaptics_i2c - guard polling restart in resume Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 105/314] iommu/vt-d: Skip dev-iotlb flush for inaccessible PCIe device without scalable mode Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 106/314] arm64: dts: rockchip: Fix rk356x PCIe range mappings Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 107/314] arm64: dts: rockchip: Fix rk3588 " Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 108/314] clk: tegra: tegra124-emc: fix device leak on set_rate() Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 109/314] ACPI: APEI: GHES: Add helper for CPER CXL protocol errors checks Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 110/314] ACPI: APEI: GHES: Disable KASAN instrumentation when compile testing with clang < 18 Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 111/314] ARM: dts: imx53-usbarmory: Replace license text comment with SPDX identifier Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 112/314] PCI: Add preceding capability position support in PCI_FIND_NEXT_*_CAP macros Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 113/314] PCI: dwc: Add new APIs to remove standard and extended Capability Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 114/314] PCI: dwc: Remove duplicate dw_pcie_ep_hide_ext_capability() function Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 115/314] PCI: dwc: ep: Fix resizable BAR support for multi-PF configurations Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 116/314] KVM: x86: Add x2APIC "features" to control EOI broadcast suppression Sasha Levin
2026-03-10 11:16 ` Sasha Levin [this message]
2026-03-10 11:16 ` [PATCH 6.18 118/314] btrfs: zoned: fixup last alloc pointer after extent removal for RAID0/10 Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 119/314] PM: sleep: core: Avoid bit field races related to work_in_progress Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 120/314] drm/amd: Fix hang on amdgpu unload by using pci_dev_is_disconnected() Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 121/314] hwmon: (max16065) Use READ/WRITE_ONCE to avoid compiler optimization induced race Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 122/314] slub: remove CONFIG_SLUB_TINY specific code paths Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 123/314] mm/slab: use prandom if !allow_spin Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 124/314] LoongArch: Remove unnecessary checks for ORC unwinder Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 125/314] LoongArch: Handle percpu handler address " Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 126/314] LoongArch: Remove some extern variables in source files Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 127/314] drm/i915/dp: Fail state computation for invalid DSC source input BPP values Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 128/314] drm/i915/dp: Fix pipe BPP clamping due to HDR Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 129/314] net: arcnet: com20020-pci: fix support for 2.5Mbit cards Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 130/314] eventpoll: Fix integer overflow in ep_loop_check_proc() Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 131/314] namespace: fix proc mount iteration Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 132/314] media: dvb-core: fix wrong reinitialization of ringbuffer on reopen Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 133/314] nfc: pn533: properly drop the usb interface reference on disconnect Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 134/314] net: usb: kaweth: validate USB endpoints Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 135/314] net: usb: kalmia: " Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 136/314] net: usb: pegasus: " Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 137/314] can: ems_usb: ems_usb_read_bulk_callback(): check the proper length of a message Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 138/314] can: usb: f81604: correctly anchor the urb in the read bulk callback Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 139/314] can: ucan: Fix infinite loop from zero-length messages Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 140/314] can: usb: etas_es58x: correctly anchor the urb in the read bulk callback Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 141/314] can: usb: f81604: handle short interrupt urb messages properly Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 142/314] can: usb: f81604: handle bulk write errors properly Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 143/314] HID: Add HID_CLAIMED_INPUT guards in raw_event callbacks missing them Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 144/314] HID: pidff: Fix condition effect bit clearing Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 145/314] HID: multitouch: Keep latency normal on deactivate for reactivation gesture Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 146/314] x86/efi: defer freeing of boot services memory Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 147/314] perf/x86/intel/uncore: Add per-scheduler IMC CAS count events Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 148/314] x86/boot: Handle relative CONFIG_EFI_SBAT_FILE file paths Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 149/314] x86/sev: Allow IBPB-on-Entry feature for SNP guests Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 150/314] x86/boot/sev: Move SEV decompressor variables into the .data section Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 151/314] platform/x86: dell-wmi-sysman: Don't hex dump plaintext password data Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 152/314] platform/x86: alienware-wmi-wmax: Add G-Mode support to m18 laptops Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 153/314] platform/x86: dell-wmi: Add audio/mic mute key codes Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 154/314] ALSA: hda/realtek: Add quirk for HP Pavilion 15-eh1xxx to enable mute LED Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 155/314] ALSA: doc: usb-audio: Add doc for QUIRK_FLAG_SKIP_IFACE_SETUP Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 156/314] ALSA: usb-audio: Use correct version for UAC3 header validation Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 157/314] ALSA: hda/intel: increase default bdl_pos_adj for Nvidia controllers Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 158/314] ALSA: hda/realtek: fix model name typo for Samsung Galaxy Book Flex (NT950QCG-X716) Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 159/314] ALSA: hda/realtek: Add quirk for Acer Aspire V3-572G Sasha Levin
2026-03-10 11:16 ` [PATCH 6.18 160/314] ALSA: hda/realtek: add quirk for Samsung Galaxy Book Flex (NT950QCT-A38A) Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 161/314] wifi: radiotap: reject radiotap with unknown bits Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 162/314] wifi: libertas: fix use-after-free in lbs_free_adapter() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 163/314] wifi: cfg80211: cancel rfkill_block work in wiphy_unregister() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 164/314] wifi: mac80211: bounds-check link_id in ieee80211_ml_reconfiguration Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 165/314] wifi: mac80211: fix NULL pointer dereference in mesh_rx_csa_frame() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 166/314] Bluetooth: purge error queues in socket destructors Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 167/314] gve: fix incorrect buffer cleanup in gve_tx_clean_pending_packets for QPL Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 168/314] net: phy: register phy led_triggers during probe to avoid AB-BA deadlock Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 169/314] IB/mthca: Add missed mthca_unmap_user_db() for mthca_create_srq() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 170/314] RDMA/irdma: Fix kernel stack leak in irdma_create_user_ah() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 171/314] RDMA/ionic: Fix kernel stack leak in ionic_create_cq() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 172/314] cpufreq: intel_pstate: Fix crash during turbo disable Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 173/314] arm64: gcs: Do not set PTE_SHARED on GCS mappings if FEAT_LPA2 is enabled Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 174/314] net/sched: ets: fix divide by zero in the offload path Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 175/314] nfsd: Fix cred ref leak in nfsd_nl_threads_set_doit() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 176/314] tracing: Fix WARN_ON in tracing_buffers_mmap_close Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 177/314] scsi: target: Fix recursive locking in __configfs_open_file() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 178/314] mm: thp: deny THP for files on anonymous inodes Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 179/314] Squashfs: check metadata block offset is within range Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 180/314] drbd: fix "LOGIC BUG" in drbd_al_begin_io_nonblock() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 181/314] drbd: fix null-pointer dereference on local read error Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 182/314] xfs: fix xfs_group release bug in xfs_dax_notify_dev_failure Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 183/314] xfs: Fix error pointer dereference Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 184/314] smb: client: fix cifs_pick_channel when channels are equally loaded Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 185/314] smb: client: fix broken multichannel with krb5+signing Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 186/314] smb: client: Don't log plaintext credentials in cifs_set_cifscreds Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 187/314] smb: client: fix oops due to uninitialised var in smb2_unlink() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 188/314] scsi: core: Fix refcount leak for tagset_refcnt Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 189/314] mptcp: pm: avoid sending RM_ADDR over same subflow Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 190/314] mptcp: pm: in-kernel: always mark signal+subflow endp as used Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 191/314] selftests: mptcp: more stable simult_flows tests Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 192/314] selftests: mptcp: join: check RM_ADDR not sent over same subflow Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 193/314] selftests: mptcp: join: check removing signal+subflow endp Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 194/314] kbuild: Split .modinfo out from ELF_DETAILS Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 195/314] Revert "netfilter: nft_set_rbtree: validate open interval overlap" Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 196/314] ARM: clean up the memset64() C wrapper Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 197/314] ASoC: fsl_xcvr: use dev_err_probe() replacing dev_err() + return Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 198/314] ASoC: fsl_xcvr: provide regmap names Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 199/314] ipmi: Fix use-after-free and list corruption on sender error Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 200/314] ksmbd: call ksmbd_vfs_kern_path_end_removing() on some error paths Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 201/314] platform/x86: hp-bioscfg: Support allocations of larger data Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 202/314] net: stmmac: remove support for lpi_intr_o Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 203/314] Bluetooth: Fix CIS host feature condition Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 204/314] drm/amd/display: Use GFP_ATOMIC in dc_create_stream_for_sink Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 205/314] nvme: fix admin queue leak on controller reset Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 206/314] hwmon: (aht10) Add support for dht20 Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 207/314] hwmon: (aht10) Fix initialization commands for AHT20 Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 208/314] pinctrl: equilibrium: rename irq_chip function callbacks Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 209/314] pinctrl: equilibrium: fix warning trace on load Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 210/314] pinctrl: qcom: qcs615: Add missing dual edge GPIO IRQ errata flag Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 211/314] platform/x86: thinkpad_acpi: Fix errors reading battery thresholds Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 212/314] module: Remove duplicate freeing of lockdep classes Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 213/314] HID: multitouch: new class MT_CLS_EGALAX_P80H84 Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 214/314] pinctrl: generic: move function to amlogic-am4 driver Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 215/314] pinctrl: meson: amlogic-a4: Fix device node reference leak in aml_dt_node_to_map_pinmux() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 216/314] pinctrl: cirrus: cs42l43: Fix double-put in cs42l43_pin_probe() Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 217/314] hwmon: (it87) Check the it87_lock() return value Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 218/314] idpf: increment completion queue next_to_clean in sw marker wait routine Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 219/314] idpf: change IRQ naming to match netdev and ethtool queue numbering Sasha Levin
2026-03-10 11:17 ` [PATCH 6.18 220/314] idpf: Fix flow rule delete failure due to invalid validation Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 221/314] ice: recap the VSI and QoS info after rebuild Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 222/314] i40e: Fix preempt count leak in napi poll tracepoint Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 223/314] e1000e: clear DPG_EN after reset to avoid autonomous power-gating Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 224/314] drm/solomon: Fix page start when updating rectangle in page addressing mode Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 225/314] netfs: Fix unbuffered/DIO writes to dispatch subrequests in strict sequence Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 226/314] nvmet-fcloop: Check remoteport port_state before calling done callback Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 227/314] net: annotate data-races around sk->sk_{data_ready,write_space} Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 228/314] net: ethernet: ti: am65-cpsw-nuss/cpsw-ale: Fix multicast entry handling in ALE table Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 229/314] nvme-multipath: fix leak on try_module_get failure Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 230/314] inet: annotate data-races around isk->inet_num Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 231/314] udp: Unhash auto-bound connected sk from 4-tuple hash table when disconnected Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 232/314] tcp: give up on stronger sk_rcvbuf checks (for now) Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 233/314] xsk: Fix fragment node deletion to prevent buffer leak Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 234/314] xsk: Fix zero-copy AF_XDP fragment drop Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 235/314] dpaa2-switch: Fix interrupt storm after receiving bad if_id in IRQ handler Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 236/314] atm: lec: fix null-ptr-deref in lec_arp_clear_vccs Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 237/314] net: ti: icssg-prueth: Fix ping failure after offload mode setup when link speed is not 1G Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 238/314] amd-xgbe: fix MAC_TCR_SS register width for 2.5G and 10M speeds Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 239/314] can: bcm: fix locking for bcm_op runtime updates Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 240/314] can: mcp251x: fix deadlock in error path of mcp251x_open Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 241/314] wifi: rsi: Don't default to -EOPNOTSUPP in rsi_mac80211_config Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 242/314] drm/syncobj: Fix handle <-> fd ioctls with dirty stack Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 243/314] drm/xe: Do not preempt fence signaling CS instructions Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 244/314] drm/xe/configfs: Free ctx_restore_mid_bb in release Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 245/314] rust: kunit: fix warning when !CONFIG_PRINTK Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 246/314] kunit: tool: copy caller args in run_kernel to prevent mutation Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 247/314] net: dsa: realtek: rtl8365mb: fix rtl8365mb_phy_ocp_write return value Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 248/314] bpf/bonding: reject vlan+srcmac xmit_hash_policy change when XDP is loaded Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 249/314] octeon_ep: Relocate counter updates before NAPI Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 250/314] octeon_ep: avoid compiler and IQ/OQ reordering Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 251/314] octeon_ep_vf: Relocate counter updates before NAPI Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 252/314] octeon_ep_vf: avoid compiler and IQ/OQ reordering Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 253/314] wifi: cw1200: Fix locking in error paths Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 254/314] wifi: wlcore: Fix a locking bug Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 255/314] wifi: mt76: mt7996: Fix possible oob access in mt7996_mac_write_txwi_80211() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 256/314] wifi: mt76: mt7925: Fix possible oob access in mt7925_mac_write_txwi_80211() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 257/314] wifi: mt76: Fix possible oob access in mt76_connac2_mac_write_txwi_80211() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 258/314] indirect_call_wrapper: do not reevaluate function pointer Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 259/314] net/rds: Fix circular locking dependency in rds_tcp_tune Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 260/314] xen/acpi-processor: fix _CST detection using undersized evaluation buffer Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 261/314] ice: fix adding AQ LLDP filter for VF Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 262/314] libie: don't unroll if fwlog isn't supported Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 263/314] iavf: fix netdev->max_mtu to respect actual hardware limit Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 264/314] igb: Fix trigger of incorrect irq in igb_xsk_wakeup Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 265/314] bpf: Fix a UAF issue in bpf_trampoline_link_cgroup_shim Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 266/314] smb/client: fix buffer size for smb311_posix_qinfo in smb2_compound_op() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 267/314] smb/client: fix buffer size for smb311_posix_qinfo in SMB311_posix_query_info() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 268/314] ipv6: fix NULL pointer deref in ip6_rt_get_dev_rcu() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 269/314] net: ipv4: fix ARM64 alignment fault in multipath hash seed Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 270/314] amd-xgbe: fix sleep while atomic on suspend/resume Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 271/314] drm/sched: Fix kernel-doc warning for drm_sched_job_done() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 272/314] i2c: i801: Revert "i2c: i801: replace acpi_lock with I2C bus lock" Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 273/314] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 274/314] drm/xe/reg_sr: Fix leak on xa_store failure Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 275/314] nvme: reject invalid pr_read_keys() num_keys values Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 276/314] nvme: fix memory allocation in nvme_pr_read_keys() Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 277/314] timekeeping: Fix timex status validation for auxiliary clocks Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 278/314] hwmon: (max6639) fix inverted polarity Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 279/314] net: sched: avoid qdisc_reset_all_tx_gt() vs dequeue race for lockless qdiscs Sasha Levin
2026-03-10 11:18 ` [PATCH 6.18 280/314] tcp: secure_seq: add back ports to TS offset Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 281/314] net: nfc: nci: Fix zero-length proprietary notifications Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 282/314] net_sched: sch_fq: clear q->band_pkt_count[] in fq_reset() Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 283/314] net: devmem: use READ_ONCE/WRITE_ONCE on binding->dev Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 284/314] nfc: nci: free skb on nci_transceive early error paths Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 285/314] nfc: nci: complete pending data exchange on device close Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 286/314] nfc: nci: clear NCI_DATA_EXCHANGE before calling completion callback Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 287/314] nfc: rawsock: cancel tx_work before socket teardown Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 288/314] net: stmmac: Fix error handling in VLAN add and delete paths Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 289/314] net: stmmac: Improve double VLAN handling Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 290/314] net: stmmac: Fix VLAN HW state restore Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 291/314] net: stmmac: Defer VLAN HW configuration when interface is down Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 292/314] block: use trylock to avoid lockdep circular dependency in sysfs Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 293/314] net: Provide a PREEMPT_RT specific check for netdev_queue::_xmit_lock Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 294/314] netfilter: nf_tables: unconditionally bump set->nelems before insertion Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 295/314] netfilter: nf_tables: clone set on flush only Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 296/314] netfilter: nft_set_pipapo: split gc into unlink and reclaim phase Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 297/314] net: ethernet: mtk_eth_soc: Reset prog ptr to old_prog in case of error in mtk_xdp_setup() Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 298/314] kselftest/harness: Use helper to avoid zero-size memset warning Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 299/314] selftests/harness: order TEST_F and XFAIL_ADD constructors Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 300/314] net: bridge: fix nd_tbl NULL dereference when IPv6 is disabled Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 301/314] net: vxlan: " Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 302/314] net: ipv6: fix panic when IPv4 route references loopback IPv6 nexthop Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 303/314] net/sched: act_ife: Fix metalist update behavior Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 304/314] xdp: use modulo operation to calculate XDP frag tailroom Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 305/314] xsk: introduce helper to determine rxq->frag_size Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 306/314] i40e: fix registering XDP RxQ info Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 307/314] i40e: use xdp.frame_sz as XDP RxQ info frag_size Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 308/314] net: enetc: use truesize " Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 309/314] xdp: produce a warning when calculated tailroom is negative Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 310/314] ata: libata-eh: Fix detection of deferred qc timeouts Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 311/314] selftest/arm64: Fix sve2p1_sigill() to hwcap test Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 312/314] tracing: Add NULL pointer check to trigger_data_free() Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 313/314] bpf: collect only live registers in linked regs Sasha Levin
2026-03-10 11:19 ` [PATCH 6.18 314/314] Linux 6.18.17-rc1 Sasha Levin
2026-03-10 12:47 ` [PATCH 6.18 000/314] 6.18.17-rc1 review Brett A C Sheffield
2026-03-10 14:22 ` Jon Hunter
2026-03-10 16:41 ` Dileep malepu
2026-03-10 18:32 ` Jeffrin Thalakkottoor
2026-03-10 18:53 ` Florian Fainelli
2026-03-10 23:20 ` Ron Economos
2026-03-11 2:18 ` Peter Schneider
2026-03-11 12:16 ` Mark Brown
2026-03-11 20:56 ` Shuah Khan
2026-03-11 21:25 ` Barry K. Nathan
2026-03-12 6:35 ` Shung-Hsi Yu
2026-03-12 10:06 ` Sasha Levin
2026-03-12 8:58 ` Miguel Ojeda
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=9f467cc138e596e4c9f8e3e3d61ba27eb267bd4e.1773141555.git.sashal@kernel.org \
--to=sashal@kernel.org \
--cc=dsterba@suse.com \
--cc=mssola@mssola.com \
--cc=patches@lists.linux.dev \
--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