stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org,
	Dafna Hirschfeld <dafna.hirschfeld@collabora.com>,
	Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>,
	Hans Verkuil <hverkuil-cisco@xs4all.nl>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.14 087/284] media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED
Date: Mon, 18 Apr 2022 14:11:08 +0200	[thread overview]
Message-ID: <20220418121213.159652979@linuxfoundation.org> (raw)
In-Reply-To: <20220418121210.689577360@linuxfoundation.org>

From: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>

[ Upstream commit fbe04b49a54e31f4321d632270207f0e6304cd16 ]

If the callback 'start_streaming' fails, then all
queued buffers in the driver should be returned with
state 'VB2_BUF_STATE_QUEUED'. Currently, they are
returned with 'VB2_BUF_STATE_ERROR' which is wrong.
Fix this. This also fixes the warning:

[   65.583633] WARNING: CPU: 5 PID: 593 at drivers/media/common/videobuf2/videobuf2-core.c:1612 vb2_start_streaming+0xd4/0x160 [videobuf2_common]
[   65.585027] Modules linked in: snd_usb_audio snd_hwdep snd_usbmidi_lib snd_rawmidi snd_soc_hdmi_codec dw_hdmi_i2s_audio saa7115 stk1160 videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common videodev mc crct10dif_ce panfrost snd_soc_simple_card snd_soc_audio_graph_card snd_soc_spdif_tx snd_soc_simple_card_utils gpu_sched phy_rockchip_pcie snd_soc_rockchip_i2s rockchipdrm analogix_dp dw_mipi_dsi dw_hdmi cec drm_kms_helper drm rtc_rk808 rockchip_saradc industrialio_triggered_buffer kfifo_buf rockchip_thermal pcie_rockchip_host ip_tables x_tables ipv6
[   65.589383] CPU: 5 PID: 593 Comm: v4l2src0:src Tainted: G        W         5.16.0-rc4-62408-g32447129cb30-dirty #14
[   65.590293] Hardware name: Radxa ROCK Pi 4B (DT)
[   65.590696] pstate: 80000005 (Nzcv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[   65.591304] pc : vb2_start_streaming+0xd4/0x160 [videobuf2_common]
[   65.591850] lr : vb2_start_streaming+0x6c/0x160 [videobuf2_common]
[   65.592395] sp : ffff800012bc3ad0
[   65.592685] x29: ffff800012bc3ad0 x28: 0000000000000000 x27: ffff800012bc3cd8
[   65.593312] x26: 0000000000000000 x25: ffff00000d8a7800 x24: 0000000040045612
[   65.593938] x23: ffff800011323000 x22: ffff800012bc3cd8 x21: ffff00000908a8b0
[   65.594562] x20: ffff00000908a8c8 x19: 00000000fffffff4 x18: ffffffffffffffff
[   65.595188] x17: 000000040044ffff x16: 00400034b5503510 x15: ffff800011323f78
[   65.595813] x14: ffff000013163886 x13: ffff000013163885 x12: 00000000000002ce
[   65.596439] x11: 0000000000000028 x10: 0000000000000001 x9 : 0000000000000228
[   65.597064] x8 : 0101010101010101 x7 : 7f7f7f7f7f7f7f7f x6 : fefefeff726c5e78
[   65.597690] x5 : ffff800012bc3990 x4 : 0000000000000000 x3 : ffff000009a34880
[   65.598315] x2 : 0000000000000000 x1 : 0000000000000000 x0 : ffff000007cd99f0
[   65.598940] Call trace:
[   65.599155]  vb2_start_streaming+0xd4/0x160 [videobuf2_common]
[   65.599672]  vb2_core_streamon+0x17c/0x1a8 [videobuf2_common]
[   65.600179]  vb2_streamon+0x54/0x88 [videobuf2_v4l2]
[   65.600619]  vb2_ioctl_streamon+0x54/0x60 [videobuf2_v4l2]
[   65.601103]  v4l_streamon+0x3c/0x50 [videodev]
[   65.601521]  __video_do_ioctl+0x1a4/0x428 [videodev]
[   65.601977]  video_usercopy+0x320/0x828 [videodev]
[   65.602419]  video_ioctl2+0x3c/0x58 [videodev]
[   65.602830]  v4l2_ioctl+0x60/0x90 [videodev]
[   65.603227]  __arm64_sys_ioctl+0xa8/0xe0
[   65.603576]  invoke_syscall+0x54/0x118
[   65.603911]  el0_svc_common.constprop.3+0x84/0x100
[   65.604332]  do_el0_svc+0x34/0xa0
[   65.604625]  el0_svc+0x1c/0x50
[   65.604897]  el0t_64_sync_handler+0x88/0xb0
[   65.605264]  el0t_64_sync+0x16c/0x170
[   65.605587] ---[ end trace 578e0ba07742170d ]---

Fixes: 8ac456495a33d ("[media] stk1160: Stop device and unqueue buffers when start_streaming() fails")
Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
Reviewed-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/media/usb/stk1160/stk1160-core.c |  2 +-
 drivers/media/usb/stk1160/stk1160-v4l.c  | 10 +++++-----
 drivers/media/usb/stk1160/stk1160.h      |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/media/usb/stk1160/stk1160-core.c b/drivers/media/usb/stk1160/stk1160-core.c
index 8e434b31cb98..7f02c2739ec2 100644
--- a/drivers/media/usb/stk1160/stk1160-core.c
+++ b/drivers/media/usb/stk1160/stk1160-core.c
@@ -410,7 +410,7 @@ static void stk1160_disconnect(struct usb_interface *interface)
 	/* Here is the only place where isoc get released */
 	stk1160_uninit_isoc(dev);
 
-	stk1160_clear_queue(dev);
+	stk1160_clear_queue(dev, VB2_BUF_STATE_ERROR);
 
 	video_unregister_device(&dev->vdev);
 	v4l2_device_disconnect(&dev->v4l2_dev);
diff --git a/drivers/media/usb/stk1160/stk1160-v4l.c b/drivers/media/usb/stk1160/stk1160-v4l.c
index 77b759a0bcd9..43676abc1694 100644
--- a/drivers/media/usb/stk1160/stk1160-v4l.c
+++ b/drivers/media/usb/stk1160/stk1160-v4l.c
@@ -269,7 +269,7 @@ static int stk1160_start_streaming(struct stk1160 *dev)
 	stk1160_uninit_isoc(dev);
 out_stop_hw:
 	usb_set_interface(dev->udev, 0, 0);
-	stk1160_clear_queue(dev);
+	stk1160_clear_queue(dev, VB2_BUF_STATE_QUEUED);
 
 	mutex_unlock(&dev->v4l_lock);
 
@@ -317,7 +317,7 @@ static int stk1160_stop_streaming(struct stk1160 *dev)
 
 	stk1160_stop_hw(dev);
 
-	stk1160_clear_queue(dev);
+	stk1160_clear_queue(dev, VB2_BUF_STATE_ERROR);
 
 	stk1160_dbg("streaming stopped\n");
 
@@ -762,7 +762,7 @@ static const struct video_device v4l_template = {
 /********************************************************************/
 
 /* Must be called with both v4l_lock and vb_queue_lock hold */
-void stk1160_clear_queue(struct stk1160 *dev)
+void stk1160_clear_queue(struct stk1160 *dev, enum vb2_buffer_state vb2_state)
 {
 	struct stk1160_buffer *buf;
 	unsigned long flags;
@@ -773,7 +773,7 @@ void stk1160_clear_queue(struct stk1160 *dev)
 		buf = list_first_entry(&dev->avail_bufs,
 			struct stk1160_buffer, list);
 		list_del(&buf->list);
-		vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
+		vb2_buffer_done(&buf->vb.vb2_buf, vb2_state);
 		stk1160_dbg("buffer [%p/%d] aborted\n",
 			    buf, buf->vb.vb2_buf.index);
 	}
@@ -783,7 +783,7 @@ void stk1160_clear_queue(struct stk1160 *dev)
 		buf = dev->isoc_ctl.buf;
 		dev->isoc_ctl.buf = NULL;
 
-		vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
+		vb2_buffer_done(&buf->vb.vb2_buf, vb2_state);
 		stk1160_dbg("buffer [%p/%d] aborted\n",
 			    buf, buf->vb.vb2_buf.index);
 	}
diff --git a/drivers/media/usb/stk1160/stk1160.h b/drivers/media/usb/stk1160/stk1160.h
index acd1c811db08..54a046aacd33 100644
--- a/drivers/media/usb/stk1160/stk1160.h
+++ b/drivers/media/usb/stk1160/stk1160.h
@@ -177,7 +177,7 @@ struct regval {
 int stk1160_vb2_setup(struct stk1160 *dev);
 int stk1160_video_register(struct stk1160 *dev);
 void stk1160_video_unregister(struct stk1160 *dev);
-void stk1160_clear_queue(struct stk1160 *dev);
+void stk1160_clear_queue(struct stk1160 *dev, enum vb2_buffer_state vb2_state);
 
 /* Provided by stk1160-video.c */
 int stk1160_alloc_isoc(struct stk1160 *dev);
-- 
2.34.1




  parent reply	other threads:[~2022-04-18 13:32 UTC|newest]

Thread overview: 300+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-18 12:09 [PATCH 4.14 000/284] 4.14.276-rc1 review Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 001/284] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 002/284] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 003/284] netdevice: add the case if dev is NULL Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 004/284] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 005/284] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 006/284] spi: Fix invalid sgs value Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 007/284] spi: Fix erroneous sgs value with min_t() Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 008/284] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 009/284] fuse: fix pipe buffer lifetime for direct_io Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 010/284] tpm: fix reference counting for struct tpm_chip Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 011/284] block: Add a helper to validate the block size Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 012/284] virtio-blk: Use blk_validate_block_size() to validate " Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 013/284] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 014/284] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 015/284] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 016/284] iio: inkern: apply consumer scale when no channel scale is available Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 017/284] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 018/284] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 019/284] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 020/284] Documentation: add link to stable release candidate tree Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 021/284] Documentation: update stable tree link Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-09-07 14:26   ` Eugeniu Rosca
2022-09-08  0:58     ` NeilBrown
2022-09-08  1:09       ` Trond Myklebust
2022-09-08 12:09         ` Eugeniu Rosca
2022-09-11  5:41           ` gregkh
2022-09-11 23:00             ` [PATCH - stable] SUNRPC: use _bh spinlocking on ->transport_lock NeilBrown
2022-09-11 23:03               ` kernel test robot
2022-09-12 10:05               ` Eugeniu Rosca
2022-09-12 10:15             ` [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync() Eugeniu Rosca
2022-09-11 12:43       ` David Laight
2022-09-11 14:08         ` Trond Myklebust
2022-04-18 12:10 ` [PATCH 4.14 023/284] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 024/284] pinctrl: samsung: drop pin banks references on error paths Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 025/284] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 026/284] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 027/284] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 028/284] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 029/284] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 030/284] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 031/284] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 032/284] qed: display VF trust config Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 033/284] qed: validate and restrict untrusted VFs vlan promisc mode Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 034/284] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 035/284] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 036/284] drbd: fix potential silent data corruption Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 037/284] ACPI: properties: Consistently return -ENOENT if there are no more references Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 038/284] drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 039/284] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 040/284] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 041/284] ARM: dts: at91: sama5d2: Fix PMERRLOC resource size Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 042/284] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 043/284] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 044/284] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 045/284] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 046/284] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 047/284] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 048/284] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 049/284] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 050/284] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 051/284] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 052/284] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 053/284] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 054/284] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 055/284] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 056/284] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 057/284] spi: pxa2xx-pci: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 058/284] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 059/284] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 060/284] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 061/284] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 062/284] hwrng: atmel - disable trng on failure path Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 063/284] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 064/284] ACPI: APEI: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 065/284] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 066/284] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 067/284] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 068/284] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 069/284] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 070/284] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 071/284] media: coda: Fix missing put_device() call in coda_get_vdoa_data Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 072/284] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 073/284] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 074/284] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 075/284] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 076/284] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 077/284] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 078/284] ALSA: spi: " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 079/284] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 080/284] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 081/284] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 082/284] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 083/284] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 084/284] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 085/284] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 086/284] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-18 12:11 ` Greg Kroah-Hartman [this message]
2022-04-18 12:11 ` [PATCH 4.14 088/284] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 089/284] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 090/284] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 091/284] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 092/284] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 093/284] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 094/284] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 095/284] ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 096/284] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 097/284] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 098/284] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 099/284] power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 100/284] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 101/284] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 102/284] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 103/284] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 104/284] dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 105/284] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 106/284] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 107/284] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 108/284] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 109/284] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 110/284] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 111/284] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 112/284] power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 113/284] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 114/284] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 115/284] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 116/284] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 117/284] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 118/284] PCI: Reduce warnings on possible RW1C corruption Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 119/284] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 120/284] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 121/284] vxcan: enable local echo for sent CAN frames Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 122/284] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 123/284] mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 124/284] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 125/284] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 126/284] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 127/284] tcp: ensure PMTU updates are processed during fastopen Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 128/284] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 129/284] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 130/284] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 131/284] staging:iio:adc:ad7280a: Fix handing of device address bit reversing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 132/284] serial: 8250_mid: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 133/284] serial: 8250: Fix race condition in RTS-after-send handling Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 134/284] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 135/284] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 136/284] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 137/284] clk: loongson1: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 138/284] clk: clps711x: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 139/284] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 140/284] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 141/284] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 142/284] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 143/284] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 144/284] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 145/284] kgdboc: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 146/284] kgdbts: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 147/284] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 148/284] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 149/284] xen: fix is_xen_pmu() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 150/284] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 151/284] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 152/284] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 153/284] NFSv4/pNFS: Fix another issue with a list iterator pointing to the head Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 154/284] lib/test: use after free in register_test_dev_kmod() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 155/284] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 156/284] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 157/284] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 158/284] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 159/284] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 160/284] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 161/284] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 162/284] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 163/284] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-18 12:55   ` syzbot
2022-04-18 12:12 ` [PATCH 4.14 164/284] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 165/284] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 166/284] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 167/284] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 168/284] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 169/284] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 170/284] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 171/284] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 172/284] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 173/284] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 174/284] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 175/284] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 176/284] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 177/284] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 178/284] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 179/284] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 180/284] powerpc/lib/sstep: Fix sthcx instruction Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 181/284] powerpc/lib/sstep: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 182/284] scsi: qla2xxx: Fix warning for missing error code Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 183/284] scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 184/284] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 185/284] ubifs: rename_whiteout: Fix double free for whiteout_ui->data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 186/284] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 187/284] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 188/284] ubifs: rename_whiteout: correct old_dir size computing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 189/284] can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 190/284] can: mcba_usb: properly check endpoint type Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 191/284] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 192/284] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 193/284] ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 194/284] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 195/284] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 196/284] mm/memcontrol: return 1 from cgroup.memory " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 197/284] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 198/284] ASoC: topology: Allow TLV control to be either read or write Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 199/284] ARM: dts: spear1340: Update serial node properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 200/284] ARM: dts: spear13xx: Update SPI dma properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 201/284] openvswitch: Fixed nd target mask field in the flow dump Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 202/284] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 203/284] ubifs: Rectify space amount budget for mkdir/tmpfile operations Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 204/284] rtc: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 205/284] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 206/284] KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 207/284] ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 208/284] ptp: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 209/284] powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 210/284] scsi: mvsas: Replace snprintf() with sysfs_emit() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 211/284] scsi: bfa: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 212/284] power: supply: axp20x_battery: properly report current when discharging Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 213/284] powerpc: Set crashkernel offset to mid of RMA region Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 214/284] PCI: aardvark: Fix support for MSI interrupts Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 215/284] iommu/arm-smmu-v3: fix event handling soft lockup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 216/284] dm ioctl: prevent potential spectre v1 gadget Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 217/284] scsi: pm8001: Fix pm8001_mpi_task_abort_resp() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 218/284] scsi: aha152x: Fix aha152x_setup() __setup handler return value Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 219/284] net/smc: correct settings of RMB window update limit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 220/284] macvtap: advertise link netns via netlink Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 221/284] bnxt_en: Eliminate unintended link toggle during FW reset Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 222/284] MIPS: fix fortify panic when copying asm exception handlers Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 223/284] scsi: libfc: Fix use after free in fc_exch_abts_resp() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 224/284] usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 225/284] xtensa: fix DTC warning unit_address_format Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 226/284] Bluetooth: Fix use after free in hci_send_acl Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 227/284] init/main.c: return 1 from handled __setup() functions Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 228/284] w1: w1_therm: fixes w1_seq for ds28ea00 sensors Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 229/284] SUNRPC/call_alloc: async tasks mustnt block waiting for memory Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 230/284] NFS: swap IO handling is slightly different for O_DIRECT IO Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 231/284] NFS: swap-out must always use STABLE writes Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 232/284] serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 233/284] virtio_console: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 234/284] jfs: prevent NULL deref in diFree Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 235/284] parisc: Fix CPU affinity for Lasi, WAX and Dino chips Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 236/284] ipv6: add missing tx timestamping on IPPROTO_RAW Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 237/284] net: add missing SOF_TIMESTAMPING_OPT_ID support Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 238/284] mm: fix race between MADV_FREE reclaim and blkdev direct IO read Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 239/284] drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 240/284] scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 241/284] net: stmmac: Fix unset max_speed difference between DT and non-DT platforms Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 242/284] drm/imx: Fix memory leak in imx_pd_connector_get_modes Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 243/284] drbd: Fix five use after free bugs in get_initial_state Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 244/284] Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 245/284] mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 246/284] mm/mempolicy: fix mpol_new leak in shared_policy_replace Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 247/284] x86/pm: Save the MSR validity status at context setup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 248/284] x86/speculation: Restore speculation related MSRs during S3 resume Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 249/284] btrfs: fix qgroup reserve overflow the qgroup limit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 250/284] arm64: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 251/284] perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 252/284] tools build: Use $(shell ) instead of `` to get embedded libperls ccopts Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 253/284] dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 254/284] mm: dont skip swap entry even if zap_details specified Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 255/284] arm64: module: remove (NOLOAD) from linker script Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 256/284] mm/sparsemem: fix mem_section will never be NULL gcc 12 warning Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 257/284] cgroup: Use open-time credentials for process migraton perm checks Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 258/284] cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 259/284] cgroup: Use open-time cgroup namespace for process migration perm checks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 260/284] xfrm: policy: match with both mark and mask on user interfaces Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 261/284] memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 262/284] veth: Ensure eth header is in skbs linear part Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 263/284] gpiolib: acpi: use correct format characters Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 264/284] mlxsw: i2c: Fix initialization error flow Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 265/284] net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 266/284] nfc: nci: add flush_workqueue to prevent uaf Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 267/284] cifs: potential buffer overflow in handling symlinks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 268/284] drm/amd: Add USBC connector ID Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 269/284] drm/amdkfd: Check for potential null return of kmalloc_array() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 270/284] Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 271/284] scsi: target: tcmu: Fix possible page UAF Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 272/284] scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 273/284] net: micrel: fix KS8851_MLL Kconfig Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 274/284] ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 275/284] gpu: ipu-v3: Fix dev_dbg frequency output Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 276/284] scsi: mvsas: Add PCI ID of RocketRaid 2640 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 277/284] drivers: net: slip: fix NPD bug in sl_tx_timeout() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 278/284] mm, page_alloc: fix build_zonerefs_node() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 279/284] mm: kmemleak: take a full lowmem check in kmemleak_*_phys() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 280/284] gcc-plugins: latent_entropy: use /dev/urandom Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 281/284] ALSA: pcm: Test for "silence" field in struct "pcm_format_data" Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 282/284] ARM: davinci: da850-evm: Avoid NULL pointer dereference Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 283/284] smp: Fix offline cpu check in flush_smp_call_function_queue() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 284/284] i2c: pasemi: Wait for write xfers to finish Greg Kroah-Hartman
2022-04-19  0:04 ` [PATCH 4.14 000/284] 4.14.276-rc1 review Guenter Roeck
2022-04-19  9:50 ` Naresh Kamboju
2022-04-19 10:14 ` Jon Hunter

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=20220418121213.159652979@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dafna.hirschfeld@collabora.com \
    --cc=ezequiel@vanguardiasur.com.ar \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mchehab@kernel.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).