All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Paul Menzel <pmenzel@molgen.mpg.de>,
	regressions@lists.linux.dev, Hans de Goede <hdegoede@redhat.com>
Subject: [PATCH 6.7 268/432] misc: lis3lv02d_i2c: Fix regulators getting en-/dis-abled twice on suspend/resume
Date: Mon,  1 Apr 2024 17:44:15 +0200	[thread overview]
Message-ID: <20240401152601.150862272@linuxfoundation.org> (raw)
In-Reply-To: <20240401152553.125349965@linuxfoundation.org>

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

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

From: Hans de Goede <hdegoede@redhat.com>

commit ac3e0384073b2408d6cb0d972fee9fcc3776053d upstream.

When not configured for wakeup lis3lv02d_i2c_suspend() will call
lis3lv02d_poweroff() even if the device has already been turned off
by the runtime-suspend handler and if configured for wakeup and
the device is runtime-suspended at this point then it is not turned
back on to serve as a wakeup source.

Before commit b1b9f7a49440 ("misc: lis3lv02d_i2c: Add missing setting
of the reg_ctrl callback"), lis3lv02d_poweroff() failed to disable
the regulators which as a side effect made calling poweroff() twice ok.

Now that poweroff() correctly disables the regulators, doing this twice
triggers a WARN() in the regulator core:

unbalanced disables for regulator-dummy
WARNING: CPU: 1 PID: 92 at drivers/regulator/core.c:2999 _regulator_disable
...

Fix lis3lv02d_i2c_suspend() to not call poweroff() a second time if
already runtime-suspended and add a poweron() call when necessary to
make wakeup work.

lis3lv02d_i2c_resume() has similar issues, with an added weirness that
it always powers on the device if it is runtime suspended, after which
the first runtime-resume will call poweron() again, causing the enabled
count for the regulator to increase by 1 every suspend/resume. These
unbalanced regulator_enable() calls cause the regulator to never
be turned off and trigger the following WARN() on driver unbind:

WARNING: CPU: 1 PID: 1724 at drivers/regulator/core.c:2396 _regulator_put

Fix this by making lis3lv02d_i2c_resume() mirror the new suspend().

Fixes: b1b9f7a49440 ("misc: lis3lv02d_i2c: Add missing setting of the reg_ctrl callback")
Reported-by: Paul Menzel <pmenzel@molgen.mpg.de>
Closes: https://lore.kernel.org/regressions/5fc6da74-af0a-4aac-b4d5-a000b39a63a5@molgen.mpg.de/
Cc: stable@vger.kernel.org
Cc: regressions@lists.linux.dev
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Tested-by: Paul Menzel <pmenzel@molgen.mpg.de> # Dell XPS 15 7590
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
Link: https://lore.kernel.org/r/20240220190035.53402-1-hdegoede@redhat.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/misc/lis3lv02d/lis3lv02d_i2c.c |   21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

--- a/drivers/misc/lis3lv02d/lis3lv02d_i2c.c
+++ b/drivers/misc/lis3lv02d/lis3lv02d_i2c.c
@@ -198,8 +198,14 @@ static int lis3lv02d_i2c_suspend(struct
 	struct i2c_client *client = to_i2c_client(dev);
 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
 
-	if (!lis3->pdata || !lis3->pdata->wakeup_flags)
+	/* Turn on for wakeup if turned off by runtime suspend */
+	if (lis3->pdata && lis3->pdata->wakeup_flags) {
+		if (pm_runtime_suspended(dev))
+			lis3lv02d_poweron(lis3);
+	/* For non wakeup turn off if not already turned off by runtime suspend */
+	} else if (!pm_runtime_suspended(dev))
 		lis3lv02d_poweroff(lis3);
+
 	return 0;
 }
 
@@ -208,13 +214,12 @@ static int lis3lv02d_i2c_resume(struct d
 	struct i2c_client *client = to_i2c_client(dev);
 	struct lis3lv02d *lis3 = i2c_get_clientdata(client);
 
-	/*
-	 * pm_runtime documentation says that devices should always
-	 * be powered on at resume. Pm_runtime turns them off after system
-	 * wide resume is complete.
-	 */
-	if (!lis3->pdata || !lis3->pdata->wakeup_flags ||
-		pm_runtime_suspended(dev))
+	/* Turn back off if turned on for wakeup and runtime suspended*/
+	if (lis3->pdata && lis3->pdata->wakeup_flags) {
+		if (pm_runtime_suspended(dev))
+			lis3lv02d_poweroff(lis3);
+	/* For non wakeup turn back on if not runtime suspended */
+	} else if (!pm_runtime_suspended(dev))
 		lis3lv02d_poweron(lis3);
 
 	return 0;



  parent reply	other threads:[~2024-04-01 16:25 UTC|newest]

Thread overview: 448+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-01 15:39 [PATCH 6.7 000/432] 6.7.12-rc1 review Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 001/432] KVM: x86: Advertise CPUID.(EAX=7,ECX=2):EDX[5:0] to userspace Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 002/432] KVM: x86: Use a switch statement and macros in __feature_translate() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 003/432] drm/vmwgfx: Unmap the surface before resetting it on a plane state Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 004/432] wifi: brcmfmac: Fix use-after-free bug in brcmf_cfg80211_detach Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 005/432] wifi: brcmfmac: avoid invalid list operation when vendor attach fails Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 006/432] media: staging: ipu3-imgu: Set fields before media_entity_pads_init() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 007/432] arm64: dts: qcom: sc7280: Add additional MSI interrupts Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 008/432] remoteproc: virtio: Fix wdg cannot recovery remote processor Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 009/432] clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 010/432] smack: Set SMACK64TRANSMUTE only for dirs in smack_inode_setxattr() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 011/432] smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 012/432] arm: dts: marvell: Fix maxium->maxim typo in brownstone dts Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 013/432] drm/vmwgfx: Fix possible null pointer derefence with invalid contexts Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 014/432] arm64: dts: qcom: sm8450-hdk: correct AMIC4 and AMIC5 microphones Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 015/432] serial: max310x: fix NULL pointer dereference in I2C instantiation Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 016/432] drm/vmwgfx: Fix the lifetime of the bo cursor memory Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 017/432] pci_iounmap(): Fix MMIO mapping leak Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 018/432] media: xc4000: Fix atomicity violation in xc4000_get_frequency Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 019/432] media: mc: Add local pad to pipeline regardless of the link state Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 020/432] media: mc: Fix flags handling when creating pad links Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 021/432] media: nxp: imx8-isi: Check whether crossbar pad is non-NULL before access Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 022/432] media: mc: Add num_links flag to media_pad Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 023/432] media: mc: Rename pad variable to clarify intent Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 024/432] media: mc: Expand MUST_CONNECT flag to always require an enabled link Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 025/432] media: nxp: imx8-isi: Mark all crossbar sink pads as MUST_CONNECT Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 026/432] md: use RCU lock to protect traversal in md_spares_need_change() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 027/432] KVM: Always flush async #PF workqueue when vCPU is being destroyed Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 028/432] arm64: dts: qcom: sm8550-qrd: correct WCD9385 TX port mapping Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 029/432] arm64: dts: qcom: sm8550-mtp: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 030/432] cpufreq: amd-pstate: Fix min_perf assignment in amd_pstate_adjust_perf() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 031/432] thermal/intel: Fix intel_tcc_get_temp() to support negative CPU temperature Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 032/432] powercap: intel_rapl: Fix a NULL pointer dereference Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 033/432] powercap: intel_rapl: Fix locking in TPMI RAPL Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 034/432] powercap: intel_rapl_tpmi: Fix a register bug Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 035/432] powercap: intel_rapl_tpmi: Fix System Domain probing Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 036/432] powerpc/smp: Adjust nr_cpu_ids to cover all threads of a core Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 037/432] powerpc/smp: Increase nr_cpu_ids to include the boot CPU Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 038/432] sparc64: NMI watchdog: fix return value of __setup handler Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 039/432] sparc: vDSO: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 040/432] crypto: qat - change SLAs cleanup flow at shutdown Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 041/432] crypto: qat - resolve race condition during AER recovery Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 042/432] selftests/mqueue: Set timeout to 180 seconds Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 043/432] ext4: correct best extent lstart adjustment logic Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 044/432] block: Clear zone limits for a non-zoned stacked queue Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 045/432] kasan/test: avoid gcc warning for intentional overflow Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 046/432] bounds: support non-power-of-two CONFIG_NR_CPUS Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 047/432] fat: fix uninitialized field in nostale filehandles Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 048/432] fuse: fix VM_MAYSHARE and direct_io_allow_mmap Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 049/432] mfd: twl: Select MFD_CORE Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 050/432] ubifs: Set page uptodate in the correct place Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 051/432] ubi: Check for too small LEB size in VTBL code Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 052/432] ubi: correct the calculation of fastmap size Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 053/432] mtd: rawnand: meson: fix scrambling mode value in command macro Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 054/432] md/md-bitmap: fix incorrect usage for sb_index Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 055/432] x86/nmi: Fix the inverse "in NMI handler" check Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 056/432] parisc/unaligned: Rewrite 64-bit inline assembly of emulate_ldd() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 057/432] parisc: Avoid clobbering the C/B bits in the PSW with tophys and tovirt macros Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 058/432] parisc: Fix ip_fast_csum Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 059/432] parisc: Fix csum_ipv6_magic on 32-bit systems Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 060/432] parisc: Fix csum_ipv6_magic on 64-bit systems Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 061/432] parisc: Strip upper 32 bit of sum in csum_ipv6_magic for 64-bit builds Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 062/432] md/raid5: fix atomicity violation in raid5_cache_count Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 063/432] iio: adc: rockchip_saradc: fix bitmask for channels on SARADCv2 Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 064/432] iio: adc: rockchip_saradc: use mask for write_enable bitfield Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 065/432] docs: Restore "smart quotes" for quotes Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 066/432] cpufreq: Limit resolving a frequency to policy min/max Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 067/432] PM: suspend: Set mem_sleep_current during kernel command line setup Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 068/432] vfio/pds: Always clear the save/restore FDs on reset Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 069/432] clk: qcom: gcc-ipq5018: fix terminating of frequency table arrays Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 070/432] clk: qcom: gcc-ipq6018: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 071/432] clk: qcom: gcc-ipq8074: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 072/432] clk: qcom: gcc-ipq9574: " Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 073/432] clk: qcom: mmcc-apq8084: " Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 074/432] clk: qcom: mmcc-msm8974: " Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 075/432] usb: xhci: Add error handling in xhci_map_urb_for_dma Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 076/432] powerpc/fsl: Fix mfpmr build errors with newer binutils Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 077/432] USB: serial: ftdi_sio: add support for GMC Z216C Adapter IR-USB Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 078/432] USB: serial: add device ID for VeriFone adapter Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 079/432] USB: serial: cp210x: add ID for MGP Instruments PDS100 Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 080/432] wifi: mac80211: track capability/opmode NSS separately Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 081/432] USB: serial: option: add MeiG Smart SLM320 product Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 082/432] KVM: x86/xen: inject vCPU upcall vector when local APIC is enabled Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 083/432] USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 084/432] PM: sleep: wakeirq: fix wake irq warning in system suspend Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 085/432] mmc: tmio: avoid concurrent runs of mmc_request_done() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 086/432] fuse: replace remaining make_bad_inode() with fuse_make_bad() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 087/432] fuse: fix root lookup with nonzero generation Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 088/432] fuse: dont unhash root Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 089/432] usb: typec: ucsi: Clean up UCSI_CABLE_PROP macros Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 090/432] usb: dwc3-am62: fix module unload/reload behavior Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 091/432] usb: dwc3-am62: Disable wakeup at remove Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 092/432] serial: core: only stop transmit when HW fifo is empty Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 093/432] serial: Lock console when calling into driver before registration Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 094/432] btrfs: qgroup: always free reserved space for extent records Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 095/432] btrfs: fix off-by-one chunk length calculation at contains_pending_extent() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 096/432] wifi: rtw88: Add missing VID/PIDs for 8811CU and 8821CU Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 097/432] PCI/PM: Drain runtime-idle callbacks before driver removal Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 098/432] PCI/DPC: Quirk PIO log size for Intel Raptor Lake Root Ports Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 099/432] ACPI: CPPC: Use access_width over bit_width for system memory accesses Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 100/432] md: dont clear MD_RECOVERY_FROZEN for new dm-raid until resume Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 101/432] md: export helpers to stop sync_thread Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 102/432] md: export helper md_is_rdwr() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 103/432] md: add a new helper reshape_interrupted() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 104/432] dm-raid: really frozen sync_thread during suspend Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 105/432] md/dm-raid: dont call md_reap_sync_thread() directly Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 106/432] dm-raid: add a new helper prepare_suspend() in md_personality Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 107/432] dm-raid456, md/raid456: fix a deadlock for dm-raid456 while io concurrent with reshape Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 108/432] dm-raid: fix lockdep waring in "pers->hot_add_disk" Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 109/432] powerpc: xor_vmx: Add -mhard-float to CFLAGS Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 110/432] block: Fix page refcounts for unaligned buffers in __bio_release_pages() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 111/432] mac802154: fix llsec key resources release in mac802154_llsec_key_del Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 112/432] mm: swap: fix race between free_swap_and_cache() and swapoff() Greg Kroah-Hartman
2024-04-02  7:55   ` Ryan Roberts
2024-04-01 15:41 ` [PATCH 6.7 113/432] mmc: core: Fix switch on gp3 partition Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 114/432] Bluetooth: btnxpuart: Fix btnxpuart_close Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 115/432] leds: trigger: netdev: Fix kernel panic on interface rename trig notify Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 116/432] drm/etnaviv: Restore some id values Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 117/432] landlock: Warn once if a Landlock action is requested while disabled Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 118/432] io_uring: fix mshot read defer taskrun cqe posting Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 119/432] hwmon: (amc6821) add of_match table Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 120/432] io_uring: fix io_queue_proc modifying req->flags Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 121/432] ext4: fix corruption during on-line resize Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 122/432] nvmem: meson-efuse: fix function pointer type mismatch Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 123/432] slimbus: core: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 124/432] phy: tegra: xusb: Add API to retrieve the port number of phy Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 125/432] usb: gadget: tegra-xudc: Fix USB3 PHY retrieval logic Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 126/432] speakup: Fix 8bit characters from direct synth Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 127/432] debugfs: fix wait/cancellation handling during remove Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 128/432] PCI/AER: Block runtime suspend when handling errors Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 129/432] io_uring/net: correctly handle multishot recvmsg retry setup Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 130/432] io_uring: fix mshot io-wq checks Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 131/432] PCI: qcom: Disable ASPM L0s for sc8280xp, sa8540p and sa8295p Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 132/432] sparc32: Fix parport build with sparc32 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 133/432] nfs: fix UAF in direct writes Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 134/432] NFS: Read unlock folio on nfs_page_create_from_folio() error Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 135/432] kbuild: Move -Wenum-{compare-conditional,enum-conversion} into W=1 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 136/432] PCI: qcom: Enable BDF to SID translation properly Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 137/432] PCI: dwc: endpoint: Fix advertised resizable BAR size Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 138/432] PCI: hv: Fix ring buffer size calculation Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 139/432] smb: client: stop revalidating reparse points unnecessarily Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 140/432] cifs: prevent updating file size from server if we have a read/write lease Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 141/432] cifs: allow changing password during remount Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 142/432] thermal/drivers/mediatek: Fix control buffer enablement on MT7896 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 143/432] vfio/pci: Disable auto-enable of exclusive INTx IRQ Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 144/432] vfio/pci: Lock external INTx masking ops Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 145/432] vfio/platform: Disable virqfds on cleanup Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 146/432] i915: make inject_virtual_interrupt() void Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 147/432] eventfd: simplify eventfd_signal() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 148/432] vfio/platform: Create persistent IRQ handlers Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 149/432] vfio/fsl-mc: Block calling interrupt handler without trigger Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 150/432] tpm,tpm_tis: Avoid warning splat at shutdown Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 151/432] ksmbd: replace generic_fillattr with vfs_getattr Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 152/432] ksmbd: retrieve number of blocks using vfs_getattr in set_file_allocation_info Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 153/432] platform/x86/intel/tpmi: Change vsec offset to u64 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 154/432] io_uring/rw: return IOU_ISSUE_SKIP_COMPLETE for multishot retry Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 155/432] io_uring: clean rings on NO_MMAP alloc fail Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 156/432] ring-buffer: Fix waking up ring buffer readers Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 157/432] ring-buffer: Do not set shortest_full when full target is hit Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 158/432] ring-buffer: Fix resetting of shortest_full Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 159/432] ring-buffer: Fix full_waiters_pending in poll Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 160/432] ring-buffer: Use wait_event_interruptible() in ring_buffer_wait() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 161/432] dlm: fix user space lkb refcounting Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 162/432] soc: fsl: qbman: Always disable interrupts when taking cgr_lock Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 163/432] soc: fsl: qbman: Use raw spinlock for cgr_lock Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 164/432] s390/zcrypt: fix reference counting on zcrypt card objects Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 165/432] drm/probe-helper: warn about negative .get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 166/432] drm/panel: do not return negative error codes from drm_panel_get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 167/432] drm/exynos: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 168/432] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 169/432] drm/vc4: hdmi: " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 170/432] clocksource/drivers/timer-riscv: Clear timer interrupt on timer initialization Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 171/432] memtest: use {READ,WRITE}_ONCE in memory scanning Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 172/432] Revert "block/mq-deadline: use correct way to throttling write requests" Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 173/432] f2fs: mark inode dirty for FI_ATOMIC_COMMITTED flag Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 174/432] f2fs: truncate page cache before clearing flags when aborting atomic write Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 175/432] nilfs2: fix failure to detect DAT corruption in btree and direct mappings Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 176/432] nilfs2: prevent kernel bug at submit_bh_wbc() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 177/432] cifs: make sure server interfaces are requested only for SMB3+ Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 178/432] cifs: delete unnecessary NULL checks in cifs_chan_update_iface() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 179/432] cifs: make cifs_chan_update_iface() a void function Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 180/432] cifs: reduce warning log level for server not advertising interfaces Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 181/432] cifs: open_cached_dir(): add FILE_READ_EA to desired access Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 182/432] mtd: rawnand: Fix and simplify again the continuous read derivations Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 183/432] mtd: rawnand: Add a helper for calculating a page index Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 184/432] mtd: rawnand: Ensure all continuous terms are always in sync Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 185/432] mtd: rawnand: Constrain even more when continuous reads are enabled Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 186/432] cpufreq: dt: always allocate zeroed cpumask Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 187/432] io_uring/futex: always remove futex entry for cancel all Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 188/432] io_uring/waitid: always remove waitid " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 189/432] x86/CPU/AMD: Update the Zenbleed microcode revisions Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 190/432] ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 191/432] net: esp: fix bad handling of pages from page_pool Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 192/432] NFSD: Fix nfsd_clid_class use of __string_len() macro Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 193/432] drm/i915: Add missing ; to __assign_str() macros in tracepoint code Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 194/432] net: hns3: tracing: fix hclgevf trace event strings Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 195/432] cxl/trace: Properly initialize cxl_poison region name Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 196/432] ksmbd: fix potencial out-of-bounds when buffer offset is invalid Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 197/432] virtio: Define feature bit for administration virtqueue Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 198/432] virtio: reenable config if freezing device failed Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 199/432] LoongArch: Change __my_cpu_offset definition to avoid mis-optimization Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 200/432] LoongArch: Define the __io_aw() hook as mmiowb() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 201/432] LoongArch/crypto: Clean up useless assignment operations Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 202/432] wireguard: netlink: check for dangling peer via is_dead instead of empty list Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 203/432] wireguard: netlink: access device through ctx instead of peer Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 204/432] wireguard: selftests: set RISCV_ISA_FALLBACK on riscv{32,64} Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 205/432] ahci: asm1064: correct count of reported ports Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 206/432] ahci: asm1064: asm1166: dont limit " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 207/432] drm/amd/display: Change default size for dummy plane in DML2 Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 208/432] drm/amdgpu: amdgpu_ttm_gart_bind set gtt bound flag Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 209/432] drm/amdgpu/pm: Fix NULL pointer dereference when get power limit Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 210/432] drm/amdgpu/pm: Check the validity of overdiver " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 211/432] drm/amd/display: Add ODM check during pipe split/merge validation Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 212/432] drm/amd/display: Override min required DCFCLK in dml1_validate Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 213/432] drm/amd/display: Allow dirty rects to be sent to dmub when abm is active Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 214/432] drm/amd/display: Add dml2 copy functions Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 215/432] drm/amd/display: Init DPPCLK from SMU on dcn32 Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 216/432] drm/amd/display: Update odm when ODM combine is changed on an otg master pipe with no plane Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 217/432] drm/amd/display: Fix idle check for shared firmware state Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 218/432] drm/amd/display: Return the correct HDCP error code Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 219/432] drm/amd/display: Fix noise issue on HDMI AV mute Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 220/432] dm snapshot: fix lockup in dm_exception_table_exit Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 221/432] x86/pm: Work around false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 222/432] wifi: brcmfmac: add per-vendor feature detection callback Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 223/432] wifi: brcmfmac: cfg80211: Use WSEC to set SAE password Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 224/432] wifi: brcmfmac: Demote vendor-specific attach/detach messages to info Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 225/432] drm/ttm: Make sure the mapped tt pages are decrypted when needed Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 226/432] vfio: Introduce interface to flush virqfd inject workqueue Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 227/432] vfio/pci: Create persistent INTx handler Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 228/432] drm/bridge: add ->edid_read hook and drm_bridge_edid_read() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 229/432] drm/bridge: lt8912b: use drm_bridge_edid_read() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 230/432] drm/bridge: lt8912b: clear the EDID property on failures Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 231/432] drm/bridge: lt8912b: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 232/432] workqueue: Shorten events_freezable_power_efficient name Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 233/432] drm/amd/display: Use freesync when `DRM_EDID_FEATURE_CONTINUOUS_FREQ` found Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 234/432] netfilter: nf_tables: mark set as dead when unbinding anonymous set with timeout Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 235/432] netfilter: nf_tables: disallow anonymous set with timeout flag Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 236/432] netfilter: nf_tables: reject constant set with timeout Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 237/432] Drivers: hv: vmbus: Calculate ring buffer size for more efficient use of memory Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 238/432] nouveau: lock the client object tree Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 239/432] drm/nouveau: fix stale locked mutex in nouveau_gem_ioctl_pushbuf Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 240/432] crypto: rk3288 - Fix use after free in unprepare Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 241/432] crypto: sun8i-ce " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 242/432] Revert "crypto: pkcs7 - remove sha1 support" Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 243/432] xfrm: Avoid clang fortify warning in copy_to_user_tmpl() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 244/432] mm, mmap: fix vma_merge() case 7 with vma_ops->close Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 245/432] selftests: mptcp: diag: return KSFT_FAIL not test_cnt Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 246/432] usb: typec: tpcm: Fix PORT_RESET behavior for self powered devices Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 247/432] thunderbolt: Fix NULL pointer dereference in tb_port_update_credits() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 248/432] cgroup/cpuset: Fix retval in update_cpumask() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 249/432] cgroup/cpuset: Fix a memory leak in update_exclusive_cpumask() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 250/432] Input: xpad - add additional HyperX Controller Identifiers Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 251/432] init/Kconfig: lower GCC version check for -Warray-bounds Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 252/432] firewire: ohci: prevent leak of left-over IRQ on unbind Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 253/432] KVM: x86: Mark target gfn of emulated atomic instruction as dirty Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 254/432] KVM: SVM: Flush pages under kvm->lock to fix UAF in svm_register_enc_region() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 255/432] SEV: disable SEV-ES DebugSwap by default Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 256/432] tracing: Use .flush() call to wake up readers Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 257/432] drm/amdgpu/pm: Fix the error of pwm1_enable setting Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 258/432] tty: serial: imx: Fix broken RS485 Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 259/432] drm/i915: Check before removing mm notifier Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 260/432] ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 platform Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 261/432] USB: usb-storage: Prevent divide-by-0 error in isd200_ata_command Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 262/432] usb: typec: altmodes/displayport: create sysfs nodes as drivers default device attribute group Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 263/432] usb: gadget: ncm: Fix handling of zero block length packets Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 264/432] usb: port: Dont try to peer unused USB ports based on location Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 265/432] xhci: Fix failure to detect ring expansion need Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 266/432] tty: serial: fsl_lpuart: avoid idle preamble pending if CTS is enabled Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 267/432] serial: 8250_dw: Do not reclock if already at correct rate Greg Kroah-Hartman
2024-04-01 17:16   ` Peter Collingbourne
2024-04-02  7:49     ` Greg Kroah-Hartman
2024-04-01 15:44 ` Greg Kroah-Hartman [this message]
2024-04-01 15:44 ` [PATCH 6.7 269/432] misc: fastrpc: Pass proper arguments to scm call Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 270/432] serial: port: Dont suspend if the port is still busy Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 271/432] mei: me: add arrow lake point S DID Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 272/432] mei: me: add arrow lake point H DID Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 273/432] vt: fix unicode buffer corruption when deleting characters Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 274/432] Revert "tty: serial: simplify qcom_geni_serial_send_chunk_fifo()" Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 275/432] fs/aio: Check IOCB_AIO_RW before the struct aio_kiocb conversion Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 276/432] ALSA: hda/realtek - Add Headset Mic supported Acer NB platform Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 277/432] ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 278/432] tee: optee: Fix kernel panic caused by incorrect error handling Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 279/432] ARM: imx_v6_v7_defconfig: Restore CONFIG_BACKLIGHT_CLASS_DEVICE Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 280/432] mm, vmscan: prevent infinite loop for costly GFP_NOIO | __GFP_RETRY_MAYFAIL allocations Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 281/432] arm64: dts: qcom: sc8280xp-x13s: limit pcie4 link speed Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 282/432] iio: accel: adxl367: fix DEVID read after reset Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 283/432] iio: accel: adxl367: fix I2C FIFO data register Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 284/432] i2c: i801: Fix using mux_pdev before its set Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 285/432] i2c: i801: Avoid potential double call to gpiod_remove_lookup_table Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 286/432] iio: imu: inv_mpu6050: fix frequency setting when chip is off Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 287/432] iio: imu: inv_mpu6050: fix FIFO parsing when empty Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 288/432] drm/i915: Dont explode when the dig port we dont have an AUX CH Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 289/432] drm/amd/display: handle range offsets in VRR ranges Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 290/432] drm/amd/swsmu: modify the gfx activity scaling Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 291/432] x86/efistub: Call mixed mode boot services on the firmwares stack Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 292/432] ASoC: amd: yc: Revert "Fix non-functional mic on Lenovo 21J2" Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 293/432] Fix memory leak in posix_clock_open() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 294/432] wifi: rtw88: 8821cu: Fix connection failure Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 295/432] btrfs: fix deadlock with fiemap and extent locking Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 296/432] x86/Kconfig: Remove CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 297/432] x86/sev: Fix position dependent variable references in startup code Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 298/432] clocksource/drivers/arm_global_timer: Fix maximum prescaler value Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 299/432] ARM: 9352/1: iwmmxt: Remove support for PJ4/PJ4B cores Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 300/432] ARM: 9359/1: flush: check if the folio is reserved for no-mapping addresses Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 301/432] entry: Respect changes to system call number by trace_sys_enter() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 302/432] swiotlb: Fix double-allocation of slots due to broken alignment handling Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 303/432] swiotlb: Honour dma_alloc_coherent() alignment in swiotlb_alloc() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 304/432] swiotlb: Fix alignment checks when both allocation and DMA masks are present Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 305/432] iommu/dma: Force swiotlb_max_mapping_size on an untrusted device Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 306/432] printk: Update @console_may_schedule in console_trylock_spinning() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 307/432] irqchip/renesas-rzg2l: Implement restriction when writing ISCR register Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 308/432] irqchip/renesas-rzg2l: Flush posted write in irq_eoi() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 309/432] irqchip/renesas-rzg2l: Add macro to retrieve TITSR register offset based on registers index Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 310/432] irqchip/renesas-rzg2l: Rename rzg2l_tint_eoi() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 311/432] irqchip/renesas-rzg2l: Rename rzg2l_irq_eoi() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 312/432] irqchip/renesas-rzg2l: Prevent spurious interrupts when setting trigger type Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 313/432] kprobes/x86: Use copy_from_kernel_nofault() to read from unsafe address Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 314/432] efi/libstub: fix efi_random_alloc() to allocate memory at alloc_min or higher address Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 315/432] x86/mpparse: Register APIC address only once Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 316/432] x86/fpu: Keep xfd_state in sync with MSR_IA32_XFD Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 317/432] efi: fix panic in kdump kernel Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 318/432] pwm: img: fix pwm clock lookup Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 319/432] selftests/mm: gup_test: conform test to TAP format output Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 320/432] selftests/mm: Fix build with _FORTIFY_SOURCE Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 321/432] btrfs: do not skip re-registration for the mounted device Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 322/432] mfd: intel-lpss: Switch to generalized quirk table Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 323/432] mfd: intel-lpss: Introduce QUIRK_CLOCK_DIVIDER_UNITY for XPS 9530 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 324/432] perf top: Use evsels cpus to replace user_requested_cpus Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 325/432] drm/i915: Stop printing pipe name as hex Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 326/432] drm/i915: Use named initializers for DPLL info Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 327/432] drm/i915: Replace a memset() with zero initialization Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 328/432] drm/i915: Try to preserve the current shared_dpll for fastset on type-c ports Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 329/432] drm/i915: Include the PLL name in the debug messages Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 330/432] drm/i915: Suppress old PLL pipe_mask checks for MG/TC/TBT PLLs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 331/432] drm/amd/display: Prevent crash when disable stream Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 332/432] ALSA: hda/tas2781: remove digital gain kcontrol Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 333/432] ALSA: hda/tas2781: add locks to kcontrols Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 334/432] init: open /initrd.image with O_LARGEFILE Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 335/432] x86/efistub: Add missing boot_params for mixed mode compat entry Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 336/432] efi/libstub: Cast away type warning in use of max() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 337/432] x86/efistub: Reinstate soft limit for initrd loading Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 338/432] prctl: generalize PR_SET_MDWE support check to be per-arch Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 339/432] ARM: prctl: reject PR_SET_MDWE on pre-ARMv6 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 340/432] tmpfs: fix race on handling dquot rbtree Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 341/432] btrfs: validate device maj:min during open Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 342/432] btrfs: fix race in read_extent_buffer_pages() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 343/432] btrfs: zoned: dont skip block groups with 100% zone unusable Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 344/432] btrfs: zoned: use zone aware sb location for scrub Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 345/432] wifi: mac80211: check/clear fast rx for non-4addr sta VLAN changes Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 346/432] wifi: cfg80211: add a flag to disable wireless extensions Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 347/432] wifi: iwlwifi: mvm: disable MLO for the time being Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 348/432] wifi: iwlwifi: fw: dont always use FW dump trig Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 349/432] wifi: iwlwifi: mvm: handle debugfs names more carefully Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 350/432] Revert "drm/amd/display: Fix sending VSC (+ colorimetry) packets for DP/eDP displays without PSR" Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 351/432] gpio: cdev: sanitize the label before requesting the interrupt Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 352/432] exec: Fix NOMMU linux_binprm::exec in transfer_args_to_stack() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 353/432] hexagon: vmlinux.lds.S: handle attributes section Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 354/432] mm: cachestat: fix two shmem bugs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 355/432] selftests/mm: sigbus-wp test requires UFFD_FEATURE_WP_HUGETLBFS_SHMEM Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 356/432] selftests/mm: fix ARM related issue with fork after pthread_create Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 357/432] mmc: sdhci-omap: re-tuning is needed after a pm transition to support emmc HS200 mode Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 358/432] mmc: core: Initialize mmc_blk_ioc_data Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 359/432] mmc: core: Avoid negative index with array access Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 360/432] sdhci-of-dwcmshc: disable PM runtime in dwcmshc_remove() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 361/432] block: Do not force full zone append completion in req_bio_endio() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 362/432] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 363/432] nouveau/dmem: handle kcalloc() allocation failure Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 364/432] net: ll_temac: platform_get_resource replaced by wrong function Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 365/432] drm/vmwgfx: Create debugfs ttm_resource_manager entry only if needed Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 366/432] drm/amdkfd: fix TLB flush after unmap for GFX9.4.2 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 367/432] drm/amdgpu: fix deadlock while reading mqd from debugfs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 368/432] drm/amd/display: Remove MPC rate control logic from DCN30 and above Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 369/432] drm/amd/display: Set DCN351 BB and IP the same as DCN35 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 370/432] drm/i915/hwmon: Fix locking inversion in sysfs getter Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 371/432] drm/i915/bios: Tolerate devdata==NULL in intel_bios_encoder_supports_dp_dual_mode() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 372/432] drm/i915/vrr: Generate VRR "safe window" for DSB Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 373/432] drm/i915/dsi: Go back to the previous INIT_OTP/DISPLAY_ON order, mostly Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 374/432] drm/i915/dsb: Fix DSB vblank waits when using VRR Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 375/432] drm/i915: Do not match JSL in ehl_combo_pll_div_frac_wa_needed() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 376/432] drm/i915/gt: Reset queue_priority_hint on parking Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 377/432] drm/amd/display: Fix bounds check for dcn35 DcfClocks Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 378/432] Bluetooth: hci_sync: Fix not checking error on hci_cmd_sync_cancel_sync Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 379/432] mtd: spinand: Add support for 5-byte IDs Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 380/432] Revert "usb: phy: generic: Get the vbus supply" Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 381/432] usb: cdc-wdm: close race between read and workqueue Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 382/432] usb: misc: ljca: Fix double free in error handling path Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 383/432] USB: UAS: return ENODEV when submit urbs fail with device not attached Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 384/432] drm/amd/display: set odm_combine_policy based on context in dcn32 resource Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 385/432] drm/amdgpu: make damage clips support configurable Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 386/432] drm/amdgpu/display: Address kdoc for is_psr_su in fill_dc_dirty_rects Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 387/432] vfio/pds: Make sure migration file isnt accessed after reset Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 388/432] ALSA: sh: aica: reorder cleanup operations to avoid UAF bugs Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 389/432] scsi: ufs: qcom: Provide default cycles_in_1us value Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 390/432] scsi: sd: Fix TCG OPAL unlock on system resume Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 391/432] scsi: sg: Avoid sg device teardown race Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 392/432] scsi: core: Fix unremoved procfs host directory regression Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 393/432] staging: vc04_services: changen strncpy() to strscpy_pad() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 394/432] staging: vc04_services: fix information leak in create_component() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 395/432] usb: dwc3: Properly set system wakeup Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 396/432] USB: core: Fix deadlock in usb_deauthorize_interface() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 397/432] USB: core: Add hub_get() and hub_put() routines Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 398/432] USB: core: Fix deadlock in port "disable" sysfs attribute Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 399/432] usb: dwc2: host: Fix remote wakeup from hibernation Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 400/432] usb: dwc2: host: Fix hibernation flow Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 401/432] usb: dwc2: host: Fix ISOC flow in DDMA mode Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 402/432] usb: dwc2: gadget: Fix exiting from clock gating Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 403/432] usb: dwc2: gadget: LPM flow fix Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 404/432] usb: udc: remove warning when queue disabled ep Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 405/432] usb: typec: ucsi: Fix race between typec_switch and role_switch Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 406/432] usb: typec: Return size of buffer if pd_set operation succeeds Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 407/432] usb: typec: ucsi: Clear EVENT_PENDING under PPM lock Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 408/432] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 409/432] usb: typec: ucsi: Ack unsupported commands Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 410/432] usb: typec: ucsi_acpi: Refactor and fix DELL quirk Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 411/432] usb: typec: ucsi: Clear UCSI_CCI_RESET_COMPLETE before reset Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 412/432] scsi: qla2xxx: Prevent command send on chip reset Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 413/432] scsi: qla2xxx: Fix N2N stuck connection Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 414/432] scsi: qla2xxx: Split FCE|EFT trace control Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 415/432] scsi: qla2xxx: Update manufacturer detail Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 416/432] scsi: qla2xxx: NVME|FCP prefer flag not being honored Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 417/432] scsi: qla2xxx: Fix command flush on cable pull Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 418/432] scsi: qla2xxx: Fix double free of the ha->vp_map pointer Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 419/432] scsi: qla2xxx: Fix double free of fcport Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 420/432] scsi: qla2xxx: Change debug message during driver unload Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 421/432] scsi: qla2xxx: Delay I/O Abort on PCI error Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 422/432] x86/bugs: Fix the SRSO mitigation on Zen3/4 Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 423/432] crash: use macro to add crashk_res into iomem early for specific arch Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 424/432] x86/bugs: Use fixed addressing for VERW operand Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 425/432] Revert "x86/bugs: Use fixed addressing for VERW operand" Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 426/432] usb: dwc3: pci: Drop duplicate ID Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 427/432] scsi: lpfc: Correct size for cmdwqe/rspwqe for memset() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 428/432] scsi: libsas: Add a helper sas_get_sas_addr_and_dev_type() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 429/432] scsi: lpfc: Correct size for wqe for memset() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 430/432] scsi: libsas: Fix disk not being scanned in after being removed Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 431/432] x86/sev: Skip ROM range scans and validation for SEV-SNP guests Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 432/432] tools/resolve_btfids: fix build with musl libc Greg Kroah-Hartman
2024-04-01 18:28 ` [PATCH 6.7 000/432] 6.7.12-rc1 review SeongJae Park
2024-04-01 19:04 ` Naresh Kamboju
2024-04-01 20:46 ` Florian Fainelli
2024-04-01 23:36 ` Shuah Khan
2024-04-02  5:05 ` Ron Economos
2024-04-02  8:06 ` Bagas Sanjaya
2024-04-02  9:12 ` Naresh Kamboju
2024-04-03 13:10   ` Greg Kroah-Hartman
2024-04-02 13:32 ` Justin Forbes
2024-04-02 14:40 ` Mark Brown
2024-04-02 19:14 ` Jon Hunter
2024-04-03 13:46 ` Conor Dooley

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=20240401152601.150862272@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hdegoede@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=pmenzel@molgen.mpg.de \
    --cc=regressions@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.