linux-kernel.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,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>,
	Alexandru Ardelean <alexandru.ardelean@analog.com>,
	Mikko Koivunen <mikko.koivunen@fi.rohmeurope.com>,
	Stable@vger.kernel.org
Subject: [PATCH 4.19 330/346] iio:light:rpr0521: Fix timestamp alignment and prevent data leak.
Date: Mon, 28 Dec 2020 13:50:49 +0100	[thread overview]
Message-ID: <20201228124935.728053862@linuxfoundation.org> (raw)
In-Reply-To: <20201228124919.745526410@linuxfoundation.org>

From: Jonathan Cameron <Jonathan.Cameron@huawei.com>

commit a61817216bcc755eabbcb1cf281d84ccad267ed1 upstream.

One of a class of bugs pointed out by Lars in a recent review.
iio_push_to_buffers_with_timestamp() assumes the buffer used is aligned
to the size of the timestamp (8 bytes).  This is not guaranteed in
this driver which uses an array of smaller elements on the stack.
As Lars also noted this anti pattern can involve a leak of data to
userspace and that indeed can happen here.  We close both issues by
moving to a suitable structure in the iio_priv().
This data is allocated with kzalloc() so no data can leak apart
from previous readings and in this case the status byte from the device.

The forced alignment of ts is not necessary in this case but it
potentially makes the code less fragile.

>From personal communications with Mikko:

We could probably split the reading of the int register, but it
would mean a significant performance cost of 20 i2c clock cycles.

Fixes: e12ffd241c00 ("iio: light: rpr0521 triggered buffer")
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Cc: Mikko Koivunen <mikko.koivunen@fi.rohmeurope.com>
Cc: <Stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20200920112742.170751-2-jic23@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/iio/light/rpr0521.c |   17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

--- a/drivers/iio/light/rpr0521.c
+++ b/drivers/iio/light/rpr0521.c
@@ -197,6 +197,17 @@ struct rpr0521_data {
 	bool pxs_need_dis;
 
 	struct regmap *regmap;
+
+	/*
+	 * Ensure correct naturally aligned timestamp.
+	 * Note that the read will put garbage data into
+	 * the padding but this should not be a problem
+	 */
+	struct {
+		__le16 channels[3];
+		u8 garbage;
+		s64 ts __aligned(8);
+	} scan;
 };
 
 static IIO_CONST_ATTR(in_intensity_scale_available, RPR0521_ALS_SCALE_AVAIL);
@@ -452,8 +463,6 @@ static irqreturn_t rpr0521_trigger_consu
 	struct rpr0521_data *data = iio_priv(indio_dev);
 	int err;
 
-	u8 buffer[16]; /* 3 16-bit channels + padding + ts */
-
 	/* Use irq timestamp when reasonable. */
 	if (iio_trigger_using_own(indio_dev) && data->irq_timestamp) {
 		pf->timestamp = data->irq_timestamp;
@@ -464,11 +473,11 @@ static irqreturn_t rpr0521_trigger_consu
 		pf->timestamp = iio_get_time_ns(indio_dev);
 
 	err = regmap_bulk_read(data->regmap, RPR0521_REG_PXS_DATA,
-		&buffer,
+		data->scan.channels,
 		(3 * 2) + 1);	/* 3 * 16-bit + (discarded) int clear reg. */
 	if (!err)
 		iio_push_to_buffers_with_timestamp(indio_dev,
-						   buffer, pf->timestamp);
+						   &data->scan, pf->timestamp);
 	else
 		dev_err(&data->client->dev,
 			"Trigger consumer can't read from sensor.\n");



  parent reply	other threads:[~2020-12-28 13:36 UTC|newest]

Thread overview: 356+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-28 12:45 [PATCH 4.19 000/346] 4.19.164-rc1 review Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 001/346] Kbuild: do not emit debug info for assembly with LLVM_IAS=1 Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 002/346] x86/lib: Change .weak to SYM_FUNC_START_WEAK for arch/x86/lib/mem*_64.S Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 003/346] spi: bcm2835aux: Fix use-after-free on unbind Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 004/346] spi: bcm2835aux: Restore err assignment in bcm2835aux_spi_probe Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 005/346] iwlwifi: pcie: limit memory read spin time Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 006/346] arm64: dts: rockchip: Assign a fixed index to mmc devices on rk3399 boards Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 007/346] iwlwifi: mvm: fix kernel panic in case of assert during CSA Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 008/346] powerpc: Drop -me200 addition to build flags Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 009/346] ARC: stack unwinding: dont assume non-current task is sleeping Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 010/346] scsi: ufs: Make sure clk scaling happens only when HBA is runtime ACTIVE Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 011/346] irqchip/gic-v3-its: Unconditionally save/restore the ITS state on suspend Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 012/346] soc: fsl: dpio: Get the cpumask through cpumask_of(cpu) Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 013/346] platform/x86: thinkpad_acpi: Do not report SW_TABLET_MODE on Yoga 11e Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 014/346] platform/x86: thinkpad_acpi: Add BAT1 is primary battery quirk for Thinkpad Yoga 11e 4th gen Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 015/346] platform/x86: acer-wmi: add automatic keyboard background light toggle key as KEY_LIGHTS_TOGGLE Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 016/346] platform/x86: intel-vbtn: Support for tablet mode on HP Pavilion 13 x360 PC Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 017/346] Input: cm109 - do not stomp on control URB Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 018/346] Input: i8042 - add Acer laptops to the i8042 reset list Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 019/346] pinctrl: amd: remove debounce filter setting in IRQ type setting Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 020/346] mmc: block: Fixup condition for CMD13 polling for RPMB requests Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 021/346] kbuild: avoid static_assert for genksyms Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 022/346] scsi: be2iscsi: Revert "Fix a theoretical leak in beiscsi_create_eqs()" Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 023/346] x86/mm/mem_encrypt: Fix definition of PMD_FLAGS_DEC_WP Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 024/346] x86/membarrier: Get rid of a dubious optimization Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 025/346] x86/apic/vector: Fix ordering in vector assignment Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 026/346] compiler.h: fix barrier_data() on clang Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 027/346] PCI: qcom: Add missing reset for ipq806x Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 028/346] mac80211: mesh: fix mesh_pathtbl_init() error path Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 029/346] net: stmmac: free tx skb buffer in stmmac_resume() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 030/346] tcp: select sane initial rcvq_space.space for big MSS Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 031/346] tcp: fix cwnd-limited bug for TSO deferral where we send nothing Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 032/346] net/mlx4_en: Avoid scheduling restart task if it is already running Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 033/346] lan743x: fix for potential NULL pointer dereference with bare card Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 034/346] net/mlx4_en: Handle TX error CQE Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 035/346] net: stmmac: delete the eee_ctrl_timer after napi disabled Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 036/346] net: stmmac: dwmac-meson8b: fix mask definition of the m250_sel mux Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 037/346] net: bridge: vlan: fix error return code in __vlan_add() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 038/346] ktest.pl: If size of log is too big to email, email error message Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 039/346] USB: dummy-hcd: Fix uninitialized array use in init() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 040/346] USB: add RESET_RESUME quirk for Snapscan 1212 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 041/346] ALSA: usb-audio: Fix potential out-of-bounds shift Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 042/346] ALSA: usb-audio: Fix control access overflow errors from chmap Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 043/346] xhci: Give USB2 ports time to enter U3 in bus suspend Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 044/346] USB: UAS: introduce a quirk to set no_write_same Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 045/346] USB: sisusbvga: Make console support depend on BROKEN Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 046/346] ALSA: pcm: oss: Fix potential out-of-bounds shift Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 047/346] serial: 8250_omap: Avoid FIFO corruption caused by MDR1 access Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 048/346] drm/xen-front: Fix misused IS_ERR_OR_NULL checks Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 049/346] drm: fix drm_dp_mst_port refcount leaks in drm_dp_mst_allocate_vcpi Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 050/346] arm64: lse: fix LSE atomics with LLVMs integrated assembler Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 051/346] arm64: lse: Fix LSE atomics with LLVM Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 052/346] arm64: Change .weak to SYM_FUNC_START_WEAK_PI for arch/arm64/lib/mem*.S Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 053/346] x86/resctrl: Remove unused struct mbm_state::chunks_bw Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 054/346] x86/resctrl: Fix incorrect local bandwidth when mba_sc is enabled Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 055/346] pinctrl: merrifield: Set default bias in case no particular value given Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 056/346] pinctrl: baytrail: Avoid clearing debounce value when turning it off Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 057/346] ARM: dts: sun8i: v3s: fix GIC node memory range Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 058/346] gpio: mvebu: fix potential user-after-free on probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 059/346] scsi: bnx2i: Requires MMU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 060/346] xsk: Fix xsk_poll()s return type Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 061/346] can: softing: softing_netdev_open(): fix error handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 062/346] clk: renesas: r9a06g032: Drop __packed for portability Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 063/346] block: factor out requeue handling from dispatch code Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 064/346] netfilter: x_tables: Switch synchronization to RCU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 065/346] gpio: eic-sprd: break loop when getting NULL device resource Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 066/346] selftests/bpf/test_offload.py: Reset ethtool features after failed setting Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 067/346] RDMA/cm: Fix an attempt to use non-valid pointer when cleaning timewait Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 068/346] ixgbe: avoid premature Rx buffer reuse Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 069/346] drm/tegra: replace idr_init() by idr_init_base() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 070/346] kernel/cpu: add arch override for clear_tasks_mm_cpumask() mm handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 071/346] drm/tegra: sor: Disable clocks on error in tegra_sor_init() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 072/346] arm64: syscall: exit userspace before unmasking exceptions Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 073/346] vxlan: Add needed_headroom for lower device Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 074/346] vxlan: Copy needed_tailroom from lowerdev Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 075/346] scsi: mpt3sas: Increase IOCInit request timeout to 30s Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 076/346] dm table: Remove BUG_ON(in_interrupt()) Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 077/346] soc/tegra: fuse: Fix index bug in get_process_id Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 078/346] USB: serial: option: add interface-number sanity check to flag handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 079/346] USB: gadget: f_acm: add support for SuperSpeed Plus Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 080/346] USB: gadget: f_midi: setup SuperSpeed Plus descriptors Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 081/346] usb: gadget: f_fs: Re-use SS descriptors for SuperSpeedPlus Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 082/346] USB: gadget: f_rndis: fix bitrate for SuperSpeed and above Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 083/346] usb: chipidea: ci_hdrc_imx: Pass DISABLE_DEVICE_STREAMING flag to imx6ul Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 084/346] ARM: dts: exynos: fix roles of USB 3.0 ports on Odroid XU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 085/346] ARM: dts: exynos: fix USB 3.0 VBUS control and over-current pins on Exynos5410 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 086/346] ARM: dts: exynos: fix USB 3.0 pins supply being turned off on Odroid XU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 087/346] coresight: tmc-etr: Check if page is valid before dma_map_page() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 088/346] scsi: megaraid_sas: Check user-provided offsets Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 089/346] HID: i2c-hid: add Vero K147 to descriptor override Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 090/346] serial_core: Check for port state when tty is in error state Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 091/346] Bluetooth: Fix slab-out-of-bounds read in hci_le_direct_adv_report_evt() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 092/346] quota: Sanity-check quota file headers on load Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 093/346] media: msi2500: assign SPI bus number dynamically Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 094/346] crypto: af_alg - avoid undefined behavior accessing salg_name Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 095/346] md: fix a warning caused by a race between concurrent md_ioctl()s Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 096/346] perf cs-etm: Change tuple from traceID-CPU# to traceID-metadata Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 097/346] perf cs-etm: Move definition of traceid_list global variable from header file Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 098/346] drm/gma500: fix double free of gma_connector Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 099/346] drm/tve200: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 100/346] soc: renesas: rmobile-sysc: Fix some leaks in rmobile_init_pm_domains() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 101/346] soc: mediatek: Check if power domains can be powered on at boot time Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 102/346] soc: qcom: geni: More properly switch to DMA mode Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 103/346] RDMA/bnxt_re: Set queue pair state when being queried Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 104/346] selinux: fix error initialization in inode_doinit_with_dentry() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 105/346] ARM: dts: aspeed: s2600wf: Fix VGA memory region location Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 106/346] RDMA/rxe: Compute PSN windows correctly Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 107/346] x86/mm/ident_map: Check for errors from ident_pud_init() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 108/346] ARM: p2v: fix handling of LPAE translation in BE mode Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 109/346] x86/apic: Fix x2apic enablement without interrupt remapping Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 110/346] sched/deadline: Fix sched_dl_global_validate() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 111/346] sched: Reenable interrupts in do_sched_yield() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 112/346] crypto: talitos - Endianess in current_desc_hdr() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 113/346] crypto: talitos - Fix return type of current_desc_hdr() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 114/346] crypto: inside-secure - Fix sizeof() mismatch Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 115/346] drm/amdgpu: fix build_coefficients() argument Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 116/346] powerpc/64: Set up a kernel stack for secondaries before cpu_restore() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 117/346] spi: img-spfi: fix reference leak in img_spfi_resume Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 118/346] drm/msm/dsi_pll_10nm: restore VCO rate during restore_state Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 119/346] ASoC: pcm: DRAIN support reactivation Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 120/346] selinux: fix inode_doinit_with_dentry() LABEL_INVALID error handling Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 121/346] arm64: dts: exynos: Include common syscon restart/poweroff for Exynos7 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 122/346] arm64: dts: exynos: Correct psci compatible used on Exynos7 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 123/346] Bluetooth: Fix null pointer dereference in hci_event_packet() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 124/346] Bluetooth: hci_h5: fix memory leak in h5_close Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 125/346] spi: spi-ti-qspi: fix reference leak in ti_qspi_setup Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 126/346] spi: tegra20-slink: fix reference leak in slink ops of tegra20 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 127/346] spi: tegra20-sflash: fix reference leak in tegra_sflash_resume Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 128/346] spi: tegra114: fix reference leak in tegra spi ops Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 129/346] spi: bcm63xx-hsspi: fix missing clk_disable_unprepare() on error in bcm63xx_hsspi_resume Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 130/346] mwifiex: fix mwifiex_shutdown_sw() causing sw reset failure Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 131/346] ASoC: wm8998: Fix PM disable depth imbalance on error Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 132/346] net: evaluate net.ipvX.conf.all.ignore_routes_with_linkdown Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 133/346] net: evaluate net.ipv4.conf.all.proxy_arp_pvlan Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 134/346] ASoC: arizona: Fix a wrong free in wm8997_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 135/346] RDMa/mthca: Work around -Wenum-conversion warning Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 136/346] MIPS: BCM47XX: fix kconfig dependency bug for BCM47XX_BCMA Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 137/346] crypto: qat - fix status check in qat_hal_put_rel_rd_xfer() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 138/346] staging: greybus: codecs: Fix reference counter leak in error handling Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 139/346] staging: gasket: interrupt: fix the missed eventfd_ctx_put() in gasket_interrupt.c Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 140/346] media: tm6000: Fix sizeof() mismatches Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 141/346] media: mtk-vcodec: add missing put_device() call in mtk_vcodec_release_dec_pm() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 142/346] ASoC: meson: fix COMPILE_TEST error Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 143/346] scsi: core: Fix VPD LUN ID designator priorities Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 144/346] media: solo6x10: fix missing snd_card_free in error handling case Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 145/346] video: fbdev: atmel_lcdfb: fix return error code in atmel_lcdfb_of_init() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 146/346] drm/omap: dmm_tiler: fix return error code in omap_dmm_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 147/346] Input: ads7846 - fix race that causes missing releases Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 148/346] Input: ads7846 - fix integer overflow on Rt calculation Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 149/346] Input: ads7846 - fix unaligned access on 7845 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 150/346] usb/max3421: fix return error code in max3421_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 151/346] spi: mxs: fix reference leak in mxs_spi_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 152/346] powerpc/feature: Fix CPU_FTRS_ALWAYS by removing CPU_FTRS_GENERIC_32 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 153/346] crypto: crypto4xx - Replace bitwise OR with logical OR in crypto4xx_build_pd Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 154/346] crypto: omap-aes - Fix PM disable depth imbalance in omap_aes_probe Greg Kroah-Hartman
2020-12-30 13:16   ` Pavel Machek
2020-12-30 13:54     ` Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 155/346] spi: fix resource leak for drivers without .remove callback Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 156/346] soc: ti: knav_qmss: fix reference leak in knav_queue_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 157/346] soc: ti: Fix reference imbalance in knav_dma_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 158/346] drivers: soc: ti: knav_qmss_queue: Fix error return code in knav_queue_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 159/346] Input: omap4-keypad - fix runtime PM error handling Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 160/346] RDMA/cxgb4: Validate the number of CQEs Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 161/346] memstick: fix a double-free bug in memstick_check Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 162/346] ARM: dts: at91: sama5d4_xplained: add pincontrol for USB Host Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 163/346] ARM: dts: at91: sama5d3_xplained: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 164/346] orinoco: Move context allocation after processing the skb Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 165/346] cw1200: fix missing destroy_workqueue() on error in cw1200_init_common Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 166/346] dmaengine: mv_xor_v2: Fix error return code in mv_xor_v2_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 167/346] media: siano: fix memory leak of debugfs members in smsdvb_hotplug Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 168/346] platform/x86: mlx-platform: Remove PSU EEPROM from default platform configuration Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 169/346] platform/x86: mlx-platform: Remove PSU EEPROM from MSN274x " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 170/346] samples: bpf: Fix lwt_len_hist reusing previous BPF map Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 171/346] mips: cdmm: fix use-after-free in mips_cdmm_bus_discover Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 172/346] media: max2175: fix max2175_set_csm_mode() error code Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 173/346] slimbus: qcom-ngd-ctrl: Avoid sending power requests without QMI Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 174/346] HSI: omap_ssi: Dont jump to free ID in ssi_add_controller() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 175/346] ARM: dts: Remove non-existent i2c1 from 98dx3236 Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 176/346] arm64: dts: rockchip: Set dr_mode to "host" for OTG on rk3328-roc-cc Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 177/346] power: supply: axp288_charger: Fix HP Pavilion x2 10 DMI matching Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 178/346] power: supply: bq24190_charger: fix reference leak Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 179/346] genirq/irqdomain: Dont try to free an interrupt that has no mapping Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 180/346] PCI: Bounds-check command-line resource alignment requests Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 181/346] PCI: Fix overflow in " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 182/346] PCI: iproc: Fix out-of-bound array accesses Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 183/346] arm64: dts: meson: fix spi-max-frequency on Khadas VIM2 Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 184/346] ARM: dts: at91: at91sam9rl: fix ADC triggers Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 185/346] platform/x86: dell-smbios-base: Fix error return code in dell_smbios_init Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 186/346] ath10k: Fix the parsing error in service available event Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 187/346] ath10k: Fix an error handling path Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 188/346] ath10k: Release some resources in " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 189/346] NFSv4.2: condition READDIRs mask for security label based on LSM state Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 190/346] SUNRPC: xprt_load_transport() needs to support the netid "rdma6" Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 191/346] lockd: dont use interval-based rebinding over TCP Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 192/346] NFS: switch nfsiod to be an UNBOUND workqueue Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 193/346] vfio-pci: Use io_remap_pfn_range() for PCI IO memory Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 194/346] media: saa7146: fix array overflow in vidioc_s_audio() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 195/346] clocksource/drivers/cadence_ttc: Fix memory leak in ttc_setup_clockevent() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 196/346] ARM: dts: at91: sama5d2: map securam as device Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 197/346] pinctrl: falcon: add missing put_device() call in pinctrl_falcon_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 198/346] arm64: dts: rockchip: Fix UART pull-ups on rk3328 Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 199/346] memstick: r592: Fix error return in r592_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 200/346] net/mlx5: Properly convey driver version to firmware Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 201/346] ASoC: jz4740-i2s: add missed checks for clk_get() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 202/346] dm ioctl: fix error return code in target_message Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 203/346] clocksource/drivers/arm_arch_timer: Correct fault programming of CNTKCTL_EL1.EVNTI Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 204/346] cpufreq: highbank: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 205/346] cpufreq: mediatek: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 206/346] cpufreq: st: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 207/346] cpufreq: loongson1: Add missing MODULE_ALIAS Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 208/346] cpufreq: scpi: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 209/346] scsi: qedi: Fix missing destroy_workqueue() on error in __qedi_probe Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 210/346] scsi: pm80xx: Fix error return in pm8001_pci_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 211/346] seq_buf: Avoid type mismatch for seq_buf_init Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 212/346] scsi: fnic: Fix error return code in fnic_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 213/346] platform/x86: mlx-platform: Fix item counter assignment for MSN2700, MSN24xx systems Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 214/346] powerpc/pseries/hibernation: drop pseries_suspend_begin() from suspend ops Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 215/346] powerpc/pseries/hibernation: remove redundant cacheinfo update Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 216/346] usb: ehci-omap: Fix PM disable depth umbalance in ehci_hcd_omap_probe Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 217/346] usb: oxu210hp-hcd: Fix memory leak in oxu_create Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 218/346] speakup: fix uninitialized flush_lock Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 219/346] nfsd: Fix message level for normal termination Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 220/346] nfs_common: need lock during iterate through the list Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 221/346] x86/kprobes: Restore BTF if the single-stepping is cancelled Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 222/346] bus: fsl-mc: fix error return code in fsl_mc_object_allocate() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 223/346] clk: tegra: Fix duplicated SE clock entry Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 224/346] extcon: max77693: Fix modalias string Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 225/346] mac80211: dont set set TDLS STA bandwidth wider than possible Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 226/346] ASoC: wm_adsp: remove "ctl" from list on error in wm_adsp_create_control() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 227/346] irqchip/alpine-msi: Fix freeing of interrupts on allocation error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 228/346] watchdog: sirfsoc: Add missing dependency on HAS_IOMEM Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 229/346] watchdog: sprd: remove watchdog disable from resume fail path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 230/346] watchdog: sprd: check busy bit before new loading rather than after that Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 231/346] watchdog: Fix potential dereferencing of null pointer Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 232/346] um: Monitor error events in IRQ controller Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 233/346] um: tty: Fix handling of close in tty lines Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 234/346] um: chan_xterm: Fix fd leak Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 235/346] nfc: s3fwrn5: Release the nfc firmware Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 236/346] powerpc/ps3: use dma_mapping_error() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 237/346] checkpatch: fix unescaped left brace Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 238/346] net: bcmgenet: Fix a resource leak in an error handling path in the probe functin Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 239/346] net: allwinner: Fix some resources leak in the error handling path of the probe and in the remove function Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 240/346] net: korina: fix return value Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 241/346] libnvdimm/label: Return -ENXIO for no slot in __blk_label_update Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 242/346] watchdog: qcom: Avoid context switch in restart handler Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 243/346] watchdog: coh901327: add COMMON_CLK dependency Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 244/346] clk: ti: Fix memleak in ti_fapll_synth_setup Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 245/346] pwm: zx: Add missing cleanup in error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 247/346] perf record: Fix memory leak when using --user-regs=? to list registers Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 248/346] qlcnic: Fix error code in probe Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 249/346] clk: s2mps11: Fix a resource leak in error handling paths in the probe function Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 250/346] clk: sunxi-ng: Make sure divider tables have sentinel Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 251/346] kconfig: fix return value of do_error_if() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 252/346] ARM: sunxi: Add machine match for the Allwinner V3 SoC Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 253/346] cfg80211: initialize rekey_data Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 254/346] [SECURITY] fix namespaced fscaps when !CONFIG_SECURITY Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 255/346] lwt: Disable BH too in run_lwt_bpf() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 256/346] Input: cros_ec_keyb - send scancodes in addition to key events Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 257/346] Input: goodix - add upside-down quirk for Teclast X98 Pro tablet Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 258/346] media: gspca: Fix memory leak in probe Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 259/346] media: sunxi-cir: ensure IR is handled when it is continuous Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 260/346] media: netup_unidvb: Dont leak SPI master in probe error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 261/346] media: ipu3-cio2: Remove traces of returned buffers Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 262/346] media: ipu3-cio2: Return actual subdev format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 263/346] media: ipu3-cio2: Serialise access to pad format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 264/346] media: ipu3-cio2: Validate mbus format in setting subdev format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 265/346] media: ipu3-cio2: Make the field on subdev format V4L2_FIELD_NONE Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 266/346] Input: cyapa_gen6 - fix out-of-bounds stack access Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 267/346] ALSA: hda/ca0132 - Change Input Source enum strings Greg Kroah-Hartman
2020-12-31 18:15   ` Pavel Machek
2021-01-01  8:02     ` Takashi Iwai
2020-12-28 12:49 ` [PATCH 4.19 268/346] PM: ACPI: PCI: Drop acpi_pm_set_bridge_wakeup() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 269/346] Revert "ACPI / resources: Use AE_CTRL_TERMINATE to terminate resources walks" Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 270/346] ACPI: PNP: compare the string length in the matching_id() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 271/346] ALSA: hda: Fix regressions on clear and reconfig sysfs Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 272/346] ALSA: hda/realtek - Enable headset mic of ASUS X430UN with ALC256 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 273/346] ALSA: hda/realtek - Enable headset mic of ASUS Q524UQK with ALC255 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 274/346] ALSA: pcm: oss: Fix a few more UBSAN fixes Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 275/346] ALSA: hda/realtek: Add quirk for MSI-GP73 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 276/346] ALSA: hda/realtek: Apply jack fixup for Quanta NL3 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 277/346] ALSA: usb-audio: Add VID to support native DSD reproduction on FiiO devices Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 278/346] ALSA: usb-audio: Disable sample read check if firmware doesnt give back Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 279/346] s390/smp: perform initial CPU reset also for SMT siblings Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 280/346] s390/kexec_file: fix diag308 subcode when loading crash kernel Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 281/346] s390/dasd: fix hanging device offline processing Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 282/346] s390/dasd: prevent inconsistent LCU device data Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 283/346] s390/dasd: fix list corruption of pavgroup group list Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 284/346] s390/dasd: fix list corruption of lcu list Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 285/346] staging: comedi: mf6x4: Fix AI end-of-conversion detection Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 286/346] powerpc/perf: Exclude kernel samples while counting events in user space Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 287/346] crypto: ecdh - avoid unaligned accesses in ecdh_set_secret() Greg Kroah-Hartman
2020-12-31 20:09   ` Pavel Machek
2021-01-02 11:29     ` Ard Biesheuvel
2020-12-28 12:50 ` [PATCH 4.19 288/346] EDAC/amd64: Fix PCI component registration Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 289/346] USB: serial: mos7720: fix parallel-port state restore Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 290/346] USB: serial: digi_acceleport: fix write-wakeup deadlocks Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 291/346] USB: serial: keyspan_pda: fix dropped unthrottle interrupts Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 292/346] USB: serial: keyspan_pda: fix write deadlock Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 293/346] USB: serial: keyspan_pda: fix stalled writes Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 294/346] USB: serial: keyspan_pda: fix write-wakeup use-after-free Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 295/346] USB: serial: keyspan_pda: fix tx-unthrottle use-after-free Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 296/346] USB: serial: keyspan_pda: fix write unthrottling Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 297/346] ext4: fix a memory leak of ext4_free_data Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 298/346] ext4: fix deadlock with fs freezing and EA inodes Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 299/346] KVM: arm64: Introduce handling of AArch32 TTBCR2 traps Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 300/346] ARM: dts: pandaboard: fix pinmux for gpio user button of Pandaboard ES Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 301/346] ARM: dts: at91: sama5d2: fix CAN message ram offset and size Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 302/346] powerpc: Fix incorrect stw{, ux, u, x} instructions in __set_pte_at Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 303/346] powerpc/rtas: Fix typo of ibm,open-errinjct in RTAS filter Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 304/346] powerpc/xmon: Change printk() to pr_cont() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 305/346] powerpc/powernv/memtrace: Dont leak kernel memory to user space Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 306/346] powerpc/powernv/memtrace: Fix crashing the kernel when enabling concurrently Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 307/346] ima: Dont modify file descriptor mode on the fly Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 308/346] ceph: fix race in concurrent __ceph_remove_cap invocations Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 309/346] SMB3: avoid confusing warning message on mount to Azure Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 310/346] SMB3.1.1: do not log warning message if server doesnt populate salt Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 311/346] ubifs: wbuf: Dont leak kernel memory to flash Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 312/346] jffs2: Fix GC exit abnormally Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 313/346] jfs: Fix array index bounds check in dbAdjTree Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 314/346] drm/dp_aux_dev: check aux_dev before use in drm_dp_aux_dev_get_by_minor() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 315/346] spi: spi-sh: Fix use-after-free on unbind Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 316/346] spi: davinci: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 317/346] spi: pic32: Dont leak DMA channels in probe error path Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 318/346] spi: rb4xx: Dont leak SPI master " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 319/346] spi: sc18is602: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 320/346] spi: st-ssc4: Fix unbalanced pm_runtime_disable() " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 321/346] spi: mt7621: fix missing clk_disable_unprepare() on error in mt7621_spi_probe Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 322/346] soc: qcom: smp2p: Safely acquire spinlock without IRQs Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 323/346] mtd: spinand: Fix OOB read Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 324/346] mtd: parser: cmdline: Fix parsing of part-names with colons Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 325/346] mtd: rawnand: qcom: Fix DMA sync on FLASH_STATUS register read Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 326/346] scsi: lpfc: Fix invalid sleeping context in lpfc_sli4_nvmet_alloc() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 327/346] scsi: lpfc: Re-fix use after free in lpfc_rq_buf_free() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 328/346] iio: buffer: Fix demux update Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 329/346] iio: adc: rockchip_saradc: fix missing clk_disable_unprepare() on error in rockchip_saradc_resume Greg Kroah-Hartman
2020-12-28 12:50 ` Greg Kroah-Hartman [this message]
2020-12-28 12:50 ` [PATCH 4.19 331/346] iio:light:st_uvis25: Fix timestamp alignment and prevent data leak Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 332/346] iio:pressure:mpl3115: Force alignment of buffer Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 333/346] iio:imu:bmi160: Fix too large a buffer Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 334/346] md/cluster: block reshape with remote resync job Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 335/346] md/cluster: fix deadlock when node is doing " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 336/346] pinctrl: sunxi: Always call chained_irq_{enter, exit} in sunxi_pinctrl_irq_handler Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 337/346] clk: mvebu: a3700: fix the XTAL MODE pin to MPP1_9 Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 338/346] xen-blkback: set ring->xenblkd to NULL after kthread_stop() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 339/346] xen/xenbus: Allow watches discard events before queueing Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 340/346] xen/xenbus: Add will_handle callback support in xenbus_watch_path() Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 341/346] xen/xenbus/xen_bus_type: Support will_handle watch callback Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 342/346] xen/xenbus: Count pending messages for each watch Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 343/346] xenbus/xenbus_backend: Disallow pending watch messages Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 344/346] libnvdimm/namespace: Fix reaping of invalidated block-window-namespace labels Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 345/346] platform/x86: intel-vbtn: Allow switch events on Acer Switch Alpha 12 Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 346/346] PCI: Fix pci_slot_release() NULL pointer dereference Greg Kroah-Hartman
2020-12-28 20:25 ` [PATCH 4.19 000/346] 4.19.164-rc1 review Guenter Roeck
2020-12-29  8:55 ` Naresh Kamboju
2020-12-30  9:38 ` Pavel Machek
2020-12-30 10:27   ` Greg Kroah-Hartman

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=20201228124935.728053862@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=alexandru.ardelean@analog.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mikko.koivunen@fi.rohmeurope.com \
    --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).