stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hans de Goede <hdegoede@redhat.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org
Cc: patches@lists.linux.dev, Sasha Levin <sashal@kernel.org>
Subject: Re: [PATCH 4.19 123/202] misc: lis3lv02d_i2c: Add missing setting of the reg_ctrl callback
Date: Wed, 21 Feb 2024 19:16:18 +0100	[thread overview]
Message-ID: <2a85437b-c395-48a5-addc-16c6bb1c590c@redhat.com> (raw)
In-Reply-To: <20240221125935.687309540@linuxfoundation.org>

Hi Greg,

On 2/21/24 14:07, Greg Kroah-Hartman wrote:
> 4.19-stable review patch.  If anyone has any objections, please let me know.

This is known to cause a regression (WARN triggering on suspend,
possible panic if panic-on-warn is set).

A fix for the regression is pending:

https://lore.kernel.org/regressions/20240220190035.53402-1-hdegoede@redhat.com/T/#u

but it has not been merged yet, so please hold of on merging this 
patch until you can apply both at once.

I see that you are also planning to apply this to other stable
branches. I'm not sure if this is necessary but to be safe
I'll copy and paste this reply to the emails for the other stable
branches.

Regards,

Hans




> 
> ------------------
> 
> From: Hans de Goede <hdegoede@redhat.com>
> 
> [ Upstream commit b1b9f7a494400c0c39f8cd83de3aaa6111c55087 ]
> 
> The lis3lv02d_i2c driver was missing a line to set the lis3_dev's
> reg_ctrl callback.
> 
> lis3_reg_ctrl(on) is called from the init callback, but due to
> the missing reg_ctrl callback the regulators where never turned off
> again leading to the following oops/backtrace when detaching the driver:
> 
> [   82.313527] ------------[ cut here ]------------
> [   82.313546] WARNING: CPU: 1 PID: 1724 at drivers/regulator/core.c:2396 _regulator_put+0x219/0x230
> ...
> [   82.313695] RIP: 0010:_regulator_put+0x219/0x230
> ...
> [   82.314767] Call Trace:
> [   82.314770]  <TASK>
> [   82.314772]  ? _regulator_put+0x219/0x230
> [   82.314777]  ? __warn+0x81/0x170
> [   82.314784]  ? _regulator_put+0x219/0x230
> [   82.314791]  ? report_bug+0x18d/0x1c0
> [   82.314801]  ? handle_bug+0x3c/0x80
> [   82.314806]  ? exc_invalid_op+0x13/0x60
> [   82.314812]  ? asm_exc_invalid_op+0x16/0x20
> [   82.314845]  ? _regulator_put+0x219/0x230
> [   82.314857]  regulator_bulk_free+0x39/0x60
> [   82.314865]  i2c_device_remove+0x22/0xb0
> 
> Add the missing setting of the callback so that the regulators
> properly get turned off again when not used.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> Link: https://lore.kernel.org/r/20231224183402.95640-1-hdegoede@redhat.com
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
>  drivers/misc/lis3lv02d/lis3lv02d_i2c.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/misc/lis3lv02d/lis3lv02d_i2c.c b/drivers/misc/lis3lv02d/lis3lv02d_i2c.c
> index 14b7d539fed6..e8da06020c81 100644
> --- a/drivers/misc/lis3lv02d/lis3lv02d_i2c.c
> +++ b/drivers/misc/lis3lv02d/lis3lv02d_i2c.c
> @@ -164,6 +164,7 @@ static int lis3lv02d_i2c_probe(struct i2c_client *client,
>  	lis3_dev.init	  = lis3_i2c_init;
>  	lis3_dev.read	  = lis3_i2c_read;
>  	lis3_dev.write	  = lis3_i2c_write;
> +	lis3_dev.reg_ctrl = lis3_reg_ctrl;
>  	lis3_dev.irq	  = client->irq;
>  	lis3_dev.ac	  = lis3lv02d_axis_map;
>  	lis3_dev.pm_dev	  = &client->dev;


  reply	other threads:[~2024-02-21 18:16 UTC|newest]

Thread overview: 209+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21 13:05 [PATCH 4.19 000/202] 4.19.307-rc1 review Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 001/202] PCI: mediatek: Clear interrupt status before dispatching handler Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 002/202] include/linux/units.h: add helpers for kelvin to/from Celsius conversion Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 003/202] units: Add Watt units Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 004/202] units: change from L to UL Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 005/202] units: add the HZ macros Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 006/202] serial: sc16is7xx: set safe default SPI clock frequency Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 007/202] driver core: add device probe log helper Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 008/202] spi: introduce SPI_MODE_X_MASK macro Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 009/202] serial: sc16is7xx: add check for unsupported SPI modes during probe Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 010/202] ext4: allow for the last group to be marked as trimmed Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 011/202] crypto: api - Disallow identical driver names Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 012/202] PM: hibernate: Enforce ordering during image compression/decompression Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 013/202] hwrng: core - Fix page fault dead lock on mmap-ed hwrng Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 014/202] rpmsg: virtio: Free driver_override when rpmsg_remove() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 015/202] parisc/firmware: Fix F-extend for PDC addresses Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 016/202] nouveau/vmm: dont set addr on the fail path to avoid warning Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 017/202] block: Remove special-casing of compound pages Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 018/202] powerpc: Use always instead of always-y in for crtsavres.o Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 019/202] x86/CPU/AMD: Fix disabling XSAVES on AMD family 0x17 due to erratum Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 020/202] driver core: Annotate dev_err_probe() with __must_check Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 021/202] Revert "driver core: Annotate dev_err_probe() with __must_check" Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 022/202] driver code: print symbolic error code Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 023/202] drivers: core: fix kernel-doc markup for dev_err_probe() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 024/202] net/smc: fix illegal rmb_desc access in SMC-D connection dump Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 025/202] vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 026/202] llc: make llc_ui_sendmsg() more robust against bonding changes Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 027/202] llc: Drop support for ETH_P_TR_802_2 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 028/202] net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 029/202] tracing: Ensure visibility when inserting an element into tracing_map Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 030/202] tcp: Add memory barrier to tcp_push() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 031/202] netlink: fix potential sleeping issue in mqueue_flush_file Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 032/202] net/mlx5: Use kfree(ft->g) in arfs_create_groups() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 033/202] net/mlx5e: fix a double-free in arfs_create_groups Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 034/202] netfilter: nf_tables: restrict anonymous set and map names to 16 bytes Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 035/202] fjes: fix memleaks in fjes_hw_setup Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 036/202] net: fec: fix the unhandled context fault from smmu Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 037/202] btrfs: dont warn if discard range is not aligned to sector Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 038/202] btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 039/202] netfilter: nf_tables: reject QUEUE/DROP verdict parameters Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 040/202] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 041/202] drm: Dont unref the same fb many times by mistake due to deadlock handling Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 042/202] drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 043/202] drm/bridge: nxp-ptn3460: simplify some " Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 044/202] drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 045/202] gpio: eic-sprd: Clear interrupt after set the interrupt type Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 046/202] mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 047/202] tick/sched: Preserve number of idle sleeps across CPU hotplug events Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 048/202] x86/entry/ia32: Ensure s32 is sign extended to s64 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 049/202] net/sched: cbs: Fix not adding cbs instance to list Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 050/202] powerpc/mm: Fix null-pointer dereference in pgtable_cache_add Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 051/202] powerpc: Fix build error due to is_valid_bugaddr() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 052/202] powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 053/202] powerpc/lib: Validate size for vector operations Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 054/202] audit: Send netlink ACK before setting connection in auditd_set Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 055/202] ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 056/202] PNP: ACPI: fix fortify warning Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 057/202] ACPI: extlog: fix NULL pointer dereference check Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 058/202] FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 059/202] UBSAN: array-index-out-of-bounds in dtSplitRoot Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 060/202] jfs: fix slab-out-of-bounds Read in dtSearch Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 061/202] jfs: fix array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 062/202] jfs: fix uaf in jfs_evict_inode Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 063/202] pstore/ram: Fix crash when setting number of cpus to an odd number Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 064/202] crypto: stm32/crc32 - fix parsing list of devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 065/202] afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 066/202] rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 067/202] jfs: fix array-index-out-of-bounds in diNewExt Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 068/202] s390/ptrace: handle setting of fpc register correctly Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 069/202] KVM: s390: fix setting of fpc register Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 070/202] SUNRPC: Fix a suspicious RCU usage warning Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 071/202] ext4: fix inconsistent between segment fstrim and full fstrim Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 072/202] ext4: unify the type of flexbg_size to unsigned int Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 073/202] ext4: remove unnecessary check from alloc_flex_gd() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 074/202] ext4: avoid online resizing failures due to oversized flex bg Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 075/202] scsi: lpfc: Fix possible file string name overflow when updating firmware Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 076/202] PCI: Add no PM reset quirk for NVIDIA Spectrum devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 077/202] bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 078/202] ARM: dts: imx7s: Fix lcdif compatible Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 079/202] ARM: dts: imx7s: Fix nand-controller #size-cells Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 080/202] wifi: ath9k: Fix potential array-index-out-of-bounds read in ath9k_htc_txstatus() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 081/202] bpf: Add map and need_defer parameters to .map_fd_put_ptr() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 082/202] scsi: libfc: Dont schedule abort twice Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 083/202] scsi: libfc: Fix up timeout error in fc_fcp_rec_error() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 084/202] ARM: dts: rockchip: fix rk3036 hdmi ports node Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 085/202] ARM: dts: imx25/27-eukrea: Fix RTC node name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 086/202] ARM: dts: imx: Use flash@0,0 pattern Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 087/202] ARM: dts: imx27: Fix sram node Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 088/202] ARM: dts: imx1: " Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 089/202] ARM: dts: imx27-apf27dev: Fix LED name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 090/202] ARM: dts: imx23-sansa: Use preferred i2c-gpios properties Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 091/202] ARM: dts: imx23/28: Fix the DMA controller node name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 092/202] md: Whenassemble the array, consult the superblock of the freshest device Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 093/202] wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 094/202] wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 095/202] wifi: cfg80211: free beacon_ies when overridden from hidden BSS Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 096/202] f2fs: fix to check return value of f2fs_reserve_new_block() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 097/202] ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 098/202] fast_dput(): handle underflows gracefully Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 099/202] RDMA/IPoIB: Fix error code return in ipoib_mcast_join Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 100/202] drm/drm_file: fix use of uninitialized variable Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 101/202] drm/framebuffer: Fix " Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 102/202] drm/mipi-dsi: Fix detach call without attach Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 103/202] media: stk1160: Fixed high volume of stk1160_dbg messages Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 104/202] media: rockchip: rga: fix swizzling for RGB formats Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 105/202] PCI: add INTEL_HDA_ARL to pci_ids.h Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 106/202] ALSA: hda: Intel: add HDA_ARL PCI ID support Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 107/202] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 108/202] IB/ipoib: Fix mcast list locking Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 109/202] media: ddbridge: fix an error code problem in ddb_probe Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 110/202] drm/msm/dpu: Ratelimit framedone timeout msgs Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 111/202] clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 112/202] clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 113/202] drm/amd/display: make flip_timestamp_in_us a 64-bit variable Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 114/202] drm/amdgpu: Let KFD sync with VM fences Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 115/202] drm/amdgpu: Drop fence check in to_amdgpu_amdkfd_fence() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 116/202] leds: trigger: panic: Dont register panic notifier if creating the trigger failed Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 117/202] um: Fix naming clash between UML and scheduler Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 118/202] um: Dont use vfprintf() for os_info() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 119/202] um: net: Fix return type of uml_net_start_xmit() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 120/202] mfd: ti_am335x_tscadc: Fix TI SoC dependencies Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 121/202] PCI: Only override AMD USB controller if required Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 122/202] usb: hub: Replace hardcoded quirk value with BIT() macro Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 123/202] misc: lis3lv02d_i2c: Add missing setting of the reg_ctrl callback Greg Kroah-Hartman
2024-02-21 18:16   ` Hans de Goede [this message]
2024-02-21 13:07 ` [PATCH 4.19 124/202] libsubcmd: Fix memory leak in uniq() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 125/202] =?UTF-8?q?virtio=5Fnet:=20Fix=20"=E2=80=98%d=E2=80=99=20directive?= =?UTF-8?q?=20writing=20between=201=20and=2011=20bytes=20into=20a=20region?= =?UTF-8?q?=20of=20size=2010"=20warnings?= Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 126/202] blk-mq: fix IO hang from sbitmap wakeup race Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 127/202] ceph: fix deadlock or deadcode of misusing dget() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 128/202] drm/amdgpu: Release adev->pm.fw before return in amdgpu_device_need_post() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 129/202] wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 130/202] scsi: isci: Fix an error code problem in isci_io_request_build() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 131/202] net: remove unneeded break Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 132/202] ixgbe: Remove non-inclusive language Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 133/202] ixgbe: Refactor returning internal error codes Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 134/202] ixgbe: Refactor overtemp event handling Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 135/202] ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 136/202] ipv6: Ensure natural alignment of const ipv6 loopback and router addresses Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 137/202] llc: call sock_orphan() at release time Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 138/202] netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 139/202] net: ipv4: fix a memleak in ip_setup_cork Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 140/202] af_unix: fix lockdep positive in sk_diag_dump_icons() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 141/202] net: sysfs: Fix /sys/class/net/<iface> path Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 142/202] HID: apple: Add support for the 2021 Magic Keyboard Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 143/202] HID: apple: Swap the Fn and Left Control keys on Apple keyboards Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 144/202] HID: apple: Add 2021 magic keyboard FN key mapping Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 145/202] bonding: remove print in bond_verify_device_path Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 146/202] dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 147/202] phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 148/202] atm: idt77252: fix a memleak in open_card_ubr0 Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 149/202] hwmon: (aspeed-pwm-tacho) mutex for tach reading Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 150/202] hwmon: (coretemp) Fix out-of-bounds memory access Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 151/202] hwmon: (coretemp) Fix bogus core_id to attr name mapping Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 152/202] inet: read sk->sk_family once in inet_recv_error() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 153/202] rxrpc: Fix response to PING RESPONSE ACKs to a dead call Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 154/202] tipc: Check the bearer type before calling tipc_udp_nl_bearer_add() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 155/202] ppp_async: limit MRU to 64K Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 156/202] netfilter: nft_compat: reject unused compat flag Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 157/202] netfilter: nft_compat: restrict match/target protocol to u16 Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 158/202] net/af_iucv: clean up a try_then_request_module() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 159/202] USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 160/202] USB: serial: option: add Fibocom FM101-GL variant Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 161/202] USB: serial: cp210x: add ID for IMST iM871A-USB Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 162/202] Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 163/202] vhost: use kzalloc() instead of kmalloc() followed by memset() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 164/202] hrtimer: Report offline hrtimer enqueue Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 165/202] btrfs: forbid creating subvol qgroups Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 166/202] btrfs: send: return EOPNOTSUPP on unknown flags Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 167/202] spi: ppc4xx: Drop write-only variable Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 168/202] ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 169/202] Documentation: net-sysfs: describe missing statistics Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 170/202] net: sysfs: Fix /sys/class/net/<iface> path for statistics Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 171/202] MIPS: Add memory clobber to csum_ipv6_magic() inline assembler Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 172/202] i40e: Fix waiting for queues of all VSIs to be disabled Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 173/202] tracing/trigger: Fix to return error if failed to alloc snapshot Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 174/202] mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 175/202] HID: wacom: generic: Avoid reporting a serial of 0 to userspace Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 176/202] HID: wacom: Do not register input devices until after hid_hw_start Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 177/202] USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 178/202] usb: f_mass_storage: forbid async queue when shutdown happen Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 179/202] scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 180/202] firewire: core: correct documentation of fw_csr_string() kernel API Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 181/202] nfc: nci: free rx_data_reassembly skb on NCI device cleanup Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 182/202] xen-netback: properly sync TX responses Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 183/202] binder: signal epoll threads of self-work Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 184/202] ext4: fix double-free of blocks due to wrong extents moved_len Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 185/202] staging: iio: ad5933: fix type mismatch regression Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 186/202] ring-buffer: Clean ring_buffer_poll_wait() error return Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 187/202] serial: max310x: set default value when reading clock ready bit Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 188/202] serial: max310x: improve crystal stable clock detection Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 189/202] x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 190/202] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 191/202] ALSA: hda/conexant: Add quirk for SWS JS201D Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 192/202] nilfs2: fix data corruption in dsync block recovery for small block sizes Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 193/202] nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 194/202] nfp: use correct macro for LengthSelect in BAR config Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 195/202] irqchip/irq-brcmstb-l2: Add write memory barrier before exit Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 196/202] pmdomain: core: Move the unused cleanup to a _sync initcall Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 197/202] Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d" Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 198/202] sched/membarrier: reduce the ability to hammer on sys_membarrier Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 199/202] nilfs2: fix potential bug in end_buffer_async_write Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 200/202] nilfs2: replace WARN_ONs for invalid DAT metadata block requests Greg Kroah-Hartman
2024-02-21 15:16   ` Ryusuke Konishi
2024-02-21 13:08 ` [PATCH 4.19 201/202] lsm: new security_file_ioctl_compat() hook Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 202/202] netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() Greg Kroah-Hartman
2024-02-21 19:48 ` [PATCH 4.19 000/202] 4.19.307-rc1 review Jon Hunter
2024-02-21 23:42 ` Shuah Khan
2024-02-22 15:16 ` Naresh Kamboju
2024-02-22 19:20 ` Harshit Mogalapalli

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=2a85437b-c395-48a5-addc-16c6bb1c590c@redhat.com \
    --to=hdegoede@redhat.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).