stable.vger.kernel.org archive mirror
 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, Ricardo Ribalda <ribalda@chromium.org>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 037/139] media: s2255: Use refcount_t instead of atomic_t for num_channels
Date: Tue,  9 Jul 2024 13:08:57 +0200	[thread overview]
Message-ID: <20240709110659.599194522@linuxfoundation.org> (raw)
In-Reply-To: <20240709110658.146853929@linuxfoundation.org>

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

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

From: Ricardo Ribalda <ribalda@chromium.org>

[ Upstream commit 6cff72f6bcee89228a662435b7c47e21a391c8d0 ]

Use an API that resembles more the actual use of num_channels.

Found by cocci:
drivers/media/usb/s2255/s2255drv.c:2362:5-24: WARNING: atomic_dec_and_test variation before object free at line 2363.
drivers/media/usb/s2255/s2255drv.c:1557:5-24: WARNING: atomic_dec_and_test variation before object free at line 1558.

Link: https://lore.kernel.org/linux-media/20240429-fix-cocci-v3-11-3c4865f5a4b0@chromium.org
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/media/usb/s2255/s2255drv.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/media/usb/s2255/s2255drv.c b/drivers/media/usb/s2255/s2255drv.c
index 3c2627712fe9d..6f78be3c42d6a 100644
--- a/drivers/media/usb/s2255/s2255drv.c
+++ b/drivers/media/usb/s2255/s2255drv.c
@@ -247,7 +247,7 @@ struct s2255_vc {
 struct s2255_dev {
 	struct s2255_vc         vc[MAX_CHANNELS];
 	struct v4l2_device      v4l2_dev;
-	atomic_t                num_channels;
+	refcount_t		num_channels;
 	int			frames;
 	struct mutex		lock;	/* channels[].vdev.lock */
 	struct mutex		cmdlock; /* protects cmdbuf */
@@ -1550,11 +1550,11 @@ static void s2255_video_device_release(struct video_device *vdev)
 		container_of(vdev, struct s2255_vc, vdev);
 
 	dprintk(dev, 4, "%s, chnls: %d\n", __func__,
-		atomic_read(&dev->num_channels));
+		refcount_read(&dev->num_channels));
 
 	v4l2_ctrl_handler_free(&vc->hdl);
 
-	if (atomic_dec_and_test(&dev->num_channels))
+	if (refcount_dec_and_test(&dev->num_channels))
 		s2255_destroy(dev);
 	return;
 }
@@ -1659,7 +1659,7 @@ static int s2255_probe_v4l(struct s2255_dev *dev)
 				"failed to register video device!\n");
 			break;
 		}
-		atomic_inc(&dev->num_channels);
+		refcount_inc(&dev->num_channels);
 		v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
 			  video_device_node_name(&vc->vdev));
 
@@ -1667,11 +1667,11 @@ static int s2255_probe_v4l(struct s2255_dev *dev)
 	pr_info("Sensoray 2255 V4L driver Revision: %s\n",
 		S2255_VERSION);
 	/* if no channels registered, return error and probe will fail*/
-	if (atomic_read(&dev->num_channels) == 0) {
+	if (refcount_read(&dev->num_channels) == 0) {
 		v4l2_device_unregister(&dev->v4l2_dev);
 		return ret;
 	}
-	if (atomic_read(&dev->num_channels) != MAX_CHANNELS)
+	if (refcount_read(&dev->num_channels) != MAX_CHANNELS)
 		pr_warn("s2255: Not all channels available.\n");
 	return 0;
 }
@@ -2220,7 +2220,7 @@ static int s2255_probe(struct usb_interface *interface,
 		goto errorFWDATA1;
 	}
 
-	atomic_set(&dev->num_channels, 0);
+	refcount_set(&dev->num_channels, 0);
 	dev->pid = id->idProduct;
 	dev->fw_data = kzalloc(sizeof(struct s2255_fw), GFP_KERNEL);
 	if (!dev->fw_data)
@@ -2340,12 +2340,12 @@ static void s2255_disconnect(struct usb_interface *interface)
 {
 	struct s2255_dev *dev = to_s2255_dev(usb_get_intfdata(interface));
 	int i;
-	int channels = atomic_read(&dev->num_channels);
+	int channels = refcount_read(&dev->num_channels);
 	mutex_lock(&dev->lock);
 	v4l2_device_disconnect(&dev->v4l2_dev);
 	mutex_unlock(&dev->lock);
 	/*see comments in the uvc_driver.c usb disconnect function */
-	atomic_inc(&dev->num_channels);
+	refcount_inc(&dev->num_channels);
 	/* unregister each video device. */
 	for (i = 0; i < channels; i++)
 		video_unregister_device(&dev->vc[i].vdev);
@@ -2358,7 +2358,7 @@ static void s2255_disconnect(struct usb_interface *interface)
 		dev->vc[i].vidstatus_ready = 1;
 		wake_up(&dev->vc[i].wait_vidstatus);
 	}
-	if (atomic_dec_and_test(&dev->num_channels))
+	if (refcount_dec_and_test(&dev->num_channels))
 		s2255_destroy(dev);
 	dev_info(&interface->dev, "%s\n", __func__);
 }
-- 
2.43.0




  parent reply	other threads:[~2024-07-09 11:12 UTC|newest]

Thread overview: 161+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-09 11:08 [PATCH 6.6 000/139] 6.6.39-rc1 review Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 001/139] locking/mutex: Introduce devm_mutex_init() Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 002/139] leds: an30259a: Use devm_mutex_init() for mutex initialization Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 003/139] crypto: hisilicon/debugfs - Fix debugfs uninit process issue Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 004/139] drm/lima: fix shared irq handling on driver remove Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 005/139] powerpc: Avoid nmi_enter/nmi_exit in real mode interrupt Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 006/139] media: dvb: as102-fe: Fix as10x_register_addr packing Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 007/139] media: dvb-usb: dib0700_devices: Add missing release_firmware() Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 008/139] IB/core: Implement a limit on UMAD receive List Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 009/139] scsi: qedf: Make qedf_execute_tmf() non-preemptible Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 010/139] irqchip/gic-v3-its: Remove BUG_ON in its_vpe_irq_domain_alloc Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 011/139] selftests/bpf: adjust dummy_st_ops_success to detect additional error Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 012/139] selftests/bpf: do not pass NULL for non-nullable params in dummy_st_ops Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 013/139] selftests/bpf: dummy_st_ops should reject 0 for non-nullable params Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 014/139] RISC-V: KVM: Fix the initial sample period value Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 015/139] crypto: aead,cipher - zeroize key buffer after use Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 016/139] media: mediatek: vcodec: Only free buffer VA that is not NULL Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 017/139] drm/amdgpu: Fix uninitialized variable warnings Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 018/139] drm/amdgpu: Using uninitialized value *size when calling amdgpu_vce_cs_reloc Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 019/139] drm/amdgpu: Initialize timestamp for some legacy SOCs Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 020/139] drm/amd/display: Check index msg_id before read or write Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 021/139] drm/amd/display: Check pipe offset before setting vblank Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 022/139] drm/amd/display: Skip finding free audio for unknown engine_id Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 023/139] drm/amd/display: Fix uninitialized variables in DM Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 024/139] drm/amdgpu: fix uninitialized scalar variable warning Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 025/139] drm/amdgpu: fix the warning about the expression (int)size - len Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 026/139] media: dw2102: Dont translate i2c read into write Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 027/139] riscv: Apply SiFive CIP-1200 workaround to single-ASID sfence.vma Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 028/139] sctp: prefer struct_size over open coded arithmetic Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 029/139] firmware: dmi: Stop decoding on broken entry Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 030/139] Input: ff-core - prefer struct_size over open coded arithmetic Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 031/139] usb: xhci: prevent potential failure in handle_tx_event() for Transfer events without TRB Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 032/139] wifi: mt76: replace skb_put with skb_put_zero Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 033/139] wifi: mt76: mt7996: add sanity checks for background radar trigger Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 034/139] thermal/drivers/mediatek/lvts_thermal: Check NULL ptr on lvts_data Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 035/139] net: dsa: mv88e6xxx: Correct check for empty list Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 036/139] media: dvb-frontends: tda18271c2dd: Remove casting during div Greg Kroah-Hartman
2024-07-09 11:08 ` Greg Kroah-Hartman [this message]
2024-07-09 11:08 ` [PATCH 6.6 038/139] media: dvb-frontends: tda10048: Fix integer overflow Greg Kroah-Hartman
2024-07-09 11:08 ` [PATCH 6.6 039/139] powerpc/dexcr: Track the DEXCR per-process Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 040/139] i2c: i801: Annotate apanel_addr as __ro_after_init Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 041/139] powerpc/64: Set _IO_BASE to POISON_POINTER_DELTA not 0 for CONFIG_PCI=n Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 042/139] orangefs: fix out-of-bounds fsid access Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 043/139] kunit: Fix timeout message Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 044/139] kunit: Handle test faults Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 045/139] powerpc/xmon: Check cpu id in commands "c#", "dp#" and "dx#" Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 046/139] selftests/net: fix uninitialized variables Greg Kroah-Hartman
2024-07-11 15:31   ` Ignat Korchagin
2024-07-11 19:15     ` John Hubbard
2024-07-11 21:18       ` Ignat Korchagin
2024-07-11 23:47         ` John Hubbard
2024-08-30 11:06     ` Greg Kroah-Hartman
2024-08-30 23:40       ` John Hubbard
2024-08-31  5:15         ` Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 047/139] igc: fix a log entry using uninitialized netdev Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 048/139] bpf: Avoid uninitialized value in BPF_CORE_READ_BITFIELD Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 049/139] f2fs: check validation of fault attrs in f2fs_build_fault_attr() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 050/139] scsi: mpi3mr: Sanitise num_phys Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 051/139] serial: imx: Raise TX trigger level to 8 Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 052/139] jffs2: Fix potential illegal address access in jffs2_free_inode Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 053/139] s390: Mark psw in __load_psw_mask() as __unitialized Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 054/139] s390/pkey: Wipe sensitive data on failure Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 055/139] btrfs: scrub: initialize ret in scrub_simple_mirror() to fix compilation warning Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 056/139] cdrom: rearrange last_media_change check to avoid unintentional overflow Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 057/139] tools/power turbostat: Remember global max_die_id Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 058/139] vhost: Use virtqueue mutex for swapping worker Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 059/139] vhost: Release worker mutex during flushes Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 060/139] vhost_task: Handle SIGKILL by flushing work and exiting Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 061/139] mac802154: fix time calculation in ieee802154_configure_durations() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 062/139] net: phy: phy_device: Fix PHY LED blinking code comment Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 063/139] UPSTREAM: tcp: fix DSACK undo in fast recovery to call tcp_try_to_open() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 064/139] net/mlx5: E-switch, Create ingress ACL when needed Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 065/139] net/mlx5e: Add mqprio_rl cleanup and free in mlx5e_priv_cleanup() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 066/139] Bluetooth: hci_event: Fix setting of unicast qos interval Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 067/139] Bluetooth: Ignore too large handle values in BIG Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 068/139] Bluetooth: ISO: Check socket flag instead of hcon Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 069/139] bluetooth/hci: disallow setting handle bigger than HCI_CONN_HANDLE_MAX Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 070/139] tcp_metrics: validate source addr length Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 071/139] KVM: s390: fix LPSWEY handling Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 072/139] e1000e: Fix S0ix residency on corporate systems Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 073/139] gpiolib: of: fix lookup quirk for MIPS Lantiq Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 074/139] net: allow skb_datagram_iter to be called from any context Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 075/139] net: txgbe: initialize num_q_vectors for MSI/INTx interrupts Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 076/139] net: ntb_netdev: Move ntb_netdev_rx_handler() to call netif_rx() from __netif_rx() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 077/139] gpio: mmio: do not calculate bgpio_bits via "ngpios" Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 078/139] wifi: wilc1000: fix ies_len type in connect path Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 079/139] riscv: kexec: Avoid deadlock in kexec crash path Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 080/139] netfilter: nf_tables: unconditionally flush pending work before notifier Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 081/139] bonding: Fix out-of-bounds read in bond_option_arp_ip_targets_set() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 082/139] selftests: fix OOM in msg_zerocopy selftest Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 083/139] selftests: make order checking verbose " Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 084/139] inet_diag: Initialize pad field in struct inet_diag_req_v2 Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 085/139] mlxsw: core_linecards: Fix double memory deallocation in case of invalid INI file Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 086/139] gpiolib: of: add polarity quirk for TSC2005 Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 087/139] cpu: Fix broken cmdline "nosmp" and "maxcpus=0" Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 088/139] platform/x86: toshiba_acpi: Fix quickstart quirk handling Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 089/139] Revert "igc: fix a log entry using uninitialized netdev" Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 090/139] nilfs2: fix inode number range checks Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 091/139] nilfs2: add missing check for inode numbers on directory entries Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 092/139] mm: optimize the redundant loop of mm_update_owner_next() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 093/139] mm: avoid overflows in dirty throttling logic Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 094/139] btrfs: fix adding block group to a reclaim list and the unused list during reclaim Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 095/139] f2fs: Add inline to f2fs_build_fault_attr() stub Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 096/139] scsi: mpi3mr: Use proper format specifier in mpi3mr_sas_port_add() Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 097/139] Bluetooth: hci_bcm4377: Fix msgid release Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 098/139] Bluetooth: qca: Fix BT enable failure again for QCA6390 after warm reboot Greg Kroah-Hartman
2024-07-09 11:09 ` [PATCH 6.6 099/139] can: kvaser_usb: Explicitly initialize family in leafimx driver_info struct Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 100/139] fsnotify: Do not generate events for O_PATH file descriptors Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 101/139] Revert "mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again" Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 102/139] drm/nouveau: fix null pointer dereference in nouveau_connector_get_modes Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 103/139] drm/amdgpu/atomfirmware: silence UBSAN warning Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 104/139] drm: panel-orientation-quirks: Add quirk for Valve Galileo Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 105/139] clk: qcom: gcc-ipq9574: Add BRANCH_HALT_VOTED flag Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 106/139] clk: sunxi-ng: common: Dont call hw_to_ccu_common on hw without common Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 107/139] powerpc/pseries: Fix scv instruction crash with kexec Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 108/139] powerpc/64s: Fix unnecessary copy to 0 when kernel is booted at address 0 Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 109/139] mtd: rawnand: Ensure ECC configuration is propagated to upper layers Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 110/139] mtd: rawnand: Fix the nand_read_data_op() early check Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 111/139] mtd: rawnand: Bypass a couple of sanity checks during NAND identification Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 112/139] mtd: rawnand: rockchip: ensure NVDDR timings are rejected Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 113/139] net: stmmac: dwmac-qcom-ethqos: fix error array size Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 114/139] bnx2x: Fix multiple UBSAN array-index-out-of-bounds Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 115/139] arm64: dts: rockchip: Fix the DCDC_REG2 minimum voltage on Quartz64 Model B Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 116/139] ima: Avoid blocking in RCU read-side critical section Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 117/139] media: dw2102: fix a potential buffer overflow Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 118/139] clk: qcom: gcc-sm6350: Fix gpll6* & gpll7 parents Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 119/139] clk: qcom: clk-alpha-pll: set ALPHA_EN bit for Stromer Plus PLLs Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 120/139] clk: mediatek: mt8183: Only enable runtime PM on mt8183-mfgcfg Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 121/139] i2c: pnx: Fix potential deadlock warning from del_timer_sync() call in isr Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 122/139] fs/ntfs3: Mark volume as dirty if xattr is broken Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 123/139] ALSA: hda/realtek: Enable headset mic of JP-IK LEAP W502 with ALC897 Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 124/139] vhost-scsi: Handle vhost_vq_work_queue failures for events Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 125/139] nvme-multipath: find NUMA path only for online numa-node Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 126/139] dma-mapping: benchmark: avoid needless copy_to_user if benchmark fails Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 127/139] connector: Fix invalid conversion in cn_proc.h Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 128/139] nvme: adjust multiples of NVME_CTRL_PAGE_SIZE in offset Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 129/139] regmap-i2c: Subtract reg size from max_write Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 130/139] platform/x86: touchscreen_dmi: Add info for GlobalSpace SolT IVW 11.6" tablet Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 131/139] platform/x86: touchscreen_dmi: Add info for the EZpad 6s Pro Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 132/139] nvmet: fix a possible leak when destroy a ctrl during qp establishment Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 133/139] kbuild: fix short log for AS in link-vmlinux.sh Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 134/139] nfc/nci: Add the inconsistency check between the input data length and count Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 135/139] spi: cadence: Ensure data lines set to low during dummy-cycle period Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 136/139] ALSA: ump: Set default protocol when not given explicitly Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 137/139] drm/amdgpu: silence UBSAN warning Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 138/139] null_blk: Do not allow runt zone with zone capacity smaller then zone size Greg Kroah-Hartman
2024-07-09 11:10 ` [PATCH 6.6 139/139] nilfs2: fix incorrect inode allocation from reserved inodes Greg Kroah-Hartman
2024-07-09 18:42 ` [PATCH 6.6 000/139] 6.6.39-rc1 review SeongJae Park
2024-07-09 19:58 ` Kelsey Steele
2024-07-09 21:35 ` Peter Schneider
2024-07-09 21:37 ` Mark Brown
2024-07-09 23:23 ` Shuah Khan
2024-07-10  8:34 ` Jon Hunter
2024-07-10  9:21 ` Shreeya Patel
2024-07-10 11:06 ` Pascal Ernster
2024-07-10 11:28 ` Harshit Mogalapalli
2024-07-10 12:30 ` Naresh Kamboju
2024-07-10 13:03 ` Ron Economos
2024-07-10 13:36 ` Takeshi Ogasawara
2024-07-10 14:11 ` Naresh Kamboju
2024-07-12 17:26 ` Florian Fainelli

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=20240709110659.599194522@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=mchehab@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=ribalda@chromium.org \
    --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).