linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Yi Wang <wang.yi59@zte.com.cn>, Stephen Boyd <sboyd@kernel.org>,
	Sasha Levin <sashal@kernel.org>,
	linux-mips@vger.kernel.org, linux-clk@vger.kernel.org
Subject: [PATCH AUTOSEL 4.20 024/304] clk: boston: fix possible memory leak in clk_boston_setup()
Date: Mon, 28 Jan 2019 10:39:01 -0500	[thread overview]
Message-ID: <20190128154341.47195-24-sashal@kernel.org> (raw)
In-Reply-To: <20190128154341.47195-1-sashal@kernel.org>

From: Yi Wang <wang.yi59@zte.com.cn>

[ Upstream commit 46fda5b5067a391912cf73bf3d32c26b6a22ad09 ]

Smatch report warnings:
drivers/clk/imgtec/clk-boston.c:76 clk_boston_setup() warn: possible memory leak of 'onecell'
drivers/clk/imgtec/clk-boston.c:83 clk_boston_setup() warn: possible memory leak of 'onecell'
drivers/clk/imgtec/clk-boston.c:90 clk_boston_setup() warn: possible memory leak of 'onecell'

'onecell' is malloced in clk_boston_setup(), but not be freed
before leaving from the error handling cases.

Signed-off-by: Yi Wang <wang.yi59@zte.com.cn>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/clk/imgtec/clk-boston.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/drivers/clk/imgtec/clk-boston.c b/drivers/clk/imgtec/clk-boston.c
index 15af423cc0c9..f5d54a64d33c 100644
--- a/drivers/clk/imgtec/clk-boston.c
+++ b/drivers/clk/imgtec/clk-boston.c
@@ -73,27 +73,32 @@ static void __init clk_boston_setup(struct device_node *np)
 	hw = clk_hw_register_fixed_rate(NULL, "input", NULL, 0, in_freq);
 	if (IS_ERR(hw)) {
 		pr_err("failed to register input clock: %ld\n", PTR_ERR(hw));
-		return;
+		goto error;
 	}
 	onecell->hws[BOSTON_CLK_INPUT] = hw;
 
 	hw = clk_hw_register_fixed_rate(NULL, "sys", "input", 0, sys_freq);
 	if (IS_ERR(hw)) {
 		pr_err("failed to register sys clock: %ld\n", PTR_ERR(hw));
-		return;
+		goto error;
 	}
 	onecell->hws[BOSTON_CLK_SYS] = hw;
 
 	hw = clk_hw_register_fixed_rate(NULL, "cpu", "input", 0, cpu_freq);
 	if (IS_ERR(hw)) {
 		pr_err("failed to register cpu clock: %ld\n", PTR_ERR(hw));
-		return;
+		goto error;
 	}
 	onecell->hws[BOSTON_CLK_CPU] = hw;
 
 	err = of_clk_add_hw_provider(np, of_clk_hw_onecell_get, onecell);
 	if (err)
 		pr_err("failed to add DT provider: %d\n", err);
+
+	return;
+
+error:
+	kfree(onecell);
 }
 
 /*
-- 
2.19.1


  parent reply	other threads:[~2019-01-28 17:50 UTC|newest]

Thread overview: 317+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-28 15:38 [PATCH AUTOSEL 4.20 001/304] drm/bufs: Fix Spectre v1 vulnerability Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 002/304] drm/v3d: Fix a use-after-free race accessing the scheduler's fences Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 003/304] staging: iio: adc: ad7280a: handle error from __ad7280_read32() Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 004/304] drm/vgem: Fix vgem_init to get drm device available Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 005/304] pinctrl: bcm2835: Use raw spinlock for RT compatibility Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 006/304] clk: sunxi-ng: h6: Set video PLLs limits Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 007/304] ASoC: Intel: mrfld: fix uninitialized variable access Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 008/304] gpiolib: Fix possible use after free on label Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 009/304] drm/sun4i: Initialize registers in tcon-top driver Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 010/304] ath10k: fixup extended per sta tx statistics Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 011/304] genirq/affinity: Spread IRQs to all available NUMA nodes Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 012/304] gpu: ipu-v3: image-convert: Prevent race between run and unprepare Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 013/304] drm/amd/display: Fix potential nullptr error Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 014/304] nds32: Fix gcc 8.0 compiler option incompatible Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 015/304] wil6210: fix reset flow for Talyn-mb Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 016/304] wil6210: fix memory leak in wil_find_tx_bcast_2 Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 017/304] ath10k: assign 'n_cipher_suites' for WCN3990 Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 018/304] ath9k: dynack: use authentication messages for 'late' ack Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 019/304] scsi: lpfc: Correct LCB RJT handling Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 020/304] scsi: mpt3sas: Call sas_remove_host before removing the target devices Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 021/304] scsi: lpfc: Fix LOGO/PLOGI handling when triggerd by ABTS Timeout event Sasha Levin
2019-01-28 15:38 ` [PATCH AUTOSEL 4.20 022/304] platform/x86: asus-nb-wmi: Map 0x35 to KEY_SCREENLOCK Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 023/304] ARM: 8808/1: kexec:offline panic_smp_self_stop CPU Sasha Levin
2019-01-28 15:39 ` Sasha Levin [this message]
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 025/304] dlm: Don't swamp the CPU with callbacks queued during recovery Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 026/304] x86/PCI: Fix Broadcom CNB20LE unintended sign extension (redux) Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 027/304] powerpc/pseries: add of_node_put() in dlpar_detach_node() Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 028/304] srcu: Prevent __call_srcu() counter wrap with read-side critical section Sasha Levin
2019-01-28 16:23   ` Paul E. McKenney
2019-01-28 17:11     ` Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 029/304] of: overlay: do not duplicate properties from overlay for new nodes Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 030/304] bpftool: Improve handling of ENOENT on map dumps Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 031/304] s390/qeth: utilize virtual MAC for Layer2 OSD devices Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 032/304] crypto: aes_ti - disable interrupts while accessing S-box Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 033/304] drm/vc4: ->x_scaling[1] should never be set to VC4_SCALING_NONE Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 034/304] serial: fsl_lpuart: clear parity enable bit when disable parity Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 035/304] serial: core: Allow processing sysrq at port unlock time Sasha Levin
2019-01-28 16:05   ` Doug Anderson
2019-01-28 17:16     ` Sasha Levin
2019-01-28 17:21       ` Doug Anderson
2019-01-28 18:04         ` Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 036/304] ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 037/304] MIPS: Boston: Disable EG20T prefetch Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 038/304] dpaa2-ptp: defer probe when portal allocation failed Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 039/304] sctp: Fix SKB list traversal in sctp_intl_store_ordered() Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 040/304] sctp: Fix SKB list traversal in sctp_intl_store_reasm() Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 041/304] iwlwifi: fw: do not set sgi bits for HE connection Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 042/304] staging:iio:ad2s90: Make probe handle spi_setup failure Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 043/304] fpga: altera-cvp: Fix registration for CvP incapable devices Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 044/304] Tools: hv: kvp: Fix a warning of buffer overflow with gcc 8.0.1 Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 045/304] fpga: altera-cvp: fix 'bad IO access' on x86_64 Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 046/304] vbox: fix link error with 'gcc -Og' Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 047/304] platform/chrome: don't report EC_MKBP_EVENT_SENSOR_FIFO as wakeup Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 048/304] i40e: suppress bogus error message Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 049/304] i40e: prevent overlapping tx_timeout recover Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 050/304] scsi: hisi_sas: change the time of SAS SSP connection Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 051/304] staging: iio: ad7780: update voltage on read Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 052/304] usbnet: smsc95xx: fix rx packet alignment Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 053/304] drm/rockchip: fix for mailbox read size Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 054/304] ARM: OMAP2+: hwmod: Fix some section annotations Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 055/304] drm/amd/display: fix gamma not being applied correctly Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 056/304] drm/amd/display: calculate stream->phy_pix_clk before clock mapping Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 057/304] bpf: libbpf: retry map creation without the name Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 058/304] net/mlx5: EQ, Use the right place to store/read IRQ affinity hint Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 059/304] modpost: validate symbol names also in find_elf_symbol Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 060/304] perf tools: Add Hygon Dhyana support Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 061/304] scsi: cxgb4i: fix thermal configuration dependencies Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 062/304] soc/tegra: Don't leak device tree node reference Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 063/304] media: rc: ensure close() is called on rc_unregister_device Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 064/304] media: video-i2c: avoid accessing released memory area when removing driver Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 065/304] media: mtk-vcodec: Release device nodes in mtk_vcodec_init_enc_pm() Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 066/304] staging: erofs: fix the definition of DBG_BUGON Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 067/304] staging: erofs: fix race when the managed cache is enabled Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 068/304] x86/resctrl: Fixup the user-visible strings Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 069/304] media: vivid: fill in media_device bus_info Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 070/304] RDMA/core: Sync unregistration with netlink commands Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 071/304] drm: rcar-du: Fix external clock error checks Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 072/304] ASoC: sunxi: sun50i-codec-analog: Add support for cpvdd regulator supply Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 073/304] clk: meson: meson8b: do not use cpu_div3 for cpu_scale_out_sel Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 074/304] clk: meson: meson8b: fix the width of the cpu_scale_div clock Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 075/304] clk: meson: meson8b: mark the CPU clock as CLK_IS_CRITICAL Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 076/304] ptp: Fix pass zero to ERR_PTR() in ptp_clock_register Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 077/304] dmaengine: xilinx_dma: Remove __aligned attribute on zynqmp_dma_desc_ll Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 078/304] powerpc/32: Add .data..Lubsan_data*/.data..Lubsan_type* sections explicitly Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 079/304] iio: adc: meson-saradc: check for devm_kasprintf failure Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 080/304] iio: adc: meson-saradc: fix internal clock names Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 081/304] iio: accel: kxcjk1013: Add KIOX010A ACPI Hardware-ID Sasha Levin
2019-01-28 15:39 ` [PATCH AUTOSEL 4.20 082/304] media: adv*/tc358743/ths8200: fill in min width/height/pixelclock Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 083/304] ACPI: SPCR: Consider baud rate 0 as preconfigured state Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 084/304] staging: pi433: fix potential null dereference Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 085/304] f2fs: avoid GC causing encrypted file corrupted Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 086/304] f2fs: move dir data flush to write checkpoint process Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 087/304] f2fs: avoid build warn of fall_through Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 088/304] f2fs: fix race between write_checkpoint and write_begin Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 089/304] f2fs: fix wrong return value of f2fs_acl_create Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 090/304] i2c: sh_mobile: add support for r8a77990 (R-Car E3) Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 091/304] arm64: io: Ensure calls to delay routines are ordered against prior readX() Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 092/304] net: aquantia: return 'err' if set MPI_DEINIT state fails Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 093/304] sunvdc: Do not spin in an infinite loop when vio_ldc_send() returns EAGAIN Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 094/304] soc: bcm: brcmstb: Don't leak device tree node reference Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 095/304] nfsd4: fix crash on writing v4_end_grace before nfsd startup Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 096/304] drm: Clear state->acquire_ctx before leaving drm_atomic_helper_commit_duplicated_state() Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 097/304] drm: Move drm_mode_setcrtc() local re-init to failure path Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 098/304] perf: arm_spe: handle devm_kasprintf() failure Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 099/304] arm64: io: Ensure value passed to __iormb() is held in a 64-bit register Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 100/304] Thermal: do not clear passive state during system sleep Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 101/304] thermal: Fix locking in cooling device sysfs update cur_state Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 102/304] firmware/efi: Add NULL pointer checks in efivars API functions Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 103/304] s390/zcrypt: improve special ap message cmd handling Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 104/304] mt76x0: dfs: fix IBI_R11 configuration on non-radar channels Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 105/304] mt76x0: use band parameter for LC calibration Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 106/304] arm64: ftrace: don't adjust the LR value Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 107/304] drm/v3d: Fix prime imports of buffers from other drivers Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 108/304] ARM: dts: mmp2: fix TWSI2 Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 109/304] nfp: add locking around representor changes Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 110/304] ARM: mmp/mmp2: dt: enable the clock Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 111/304] ARM: dts: aspeed: add missing memory unit-address Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 112/304] spi: fix spi-at91-usart.c build errors when PINCTRL is not set Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 113/304] x86/fpu: Add might_fault() to user_insn() Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 114/304] media: i2c: TDA1997x: select CONFIG_HDMI Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 115/304] media: DaVinci-VPBE: fix error handling in vpbe_initialize() Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 116/304] platform/x86: Fix config space access for intel_atomisp2_pm Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 117/304] smack: fix access permissions for keyring Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 118/304] xtensa: xtfpga.dtsi: fix dtc warnings about SPI Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 119/304] usb: dwc3: Correct the logic for checking TRB full in __dwc3_prepare_one_trb() Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 120/304] dmaengine: sprd: Support DMA link-list cyclic callback Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 121/304] usb: dwc2: Disable power down feature on Samsung SoCs Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 122/304] usb: hub: delay hub autosuspend if USB3 port is still link training Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 123/304] timekeeping: Use proper seqcount initializer Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 124/304] usb: mtu3: fix the issue about SetFeature(U1/U2_Enable) Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 125/304] clk: sunxi-ng: a33: Set CLK_SET_RATE_PARENT for all audio module clocks Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 126/304] media: imx274: select REGMAP_I2C Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 127/304] mac80211: fix deauth TX when we disconnect Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 128/304] pinctrl: nuvoton: check for devm_kasprintf() failure Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 129/304] drm/amdgpu/powerplay: fix clock stretcher limits on polaris (v2) Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 130/304] tipc: fix node keep alive interval calculation Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 131/304] arm64: dts: rockchip: fix rk3399-rockpro64 regulator gpios Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 132/304] driver core: Move async_synchronize_full call Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 133/304] kobject: return error code if writing /sys/.../uevent fails Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 134/304] IB/hfi1: Unreserve a reserved request when it is completed Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 135/304] usb: dwc3: trace: add missing break statement to make compiler happy Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 136/304] gpio: mt7621: report failure of devm_kasprintf() Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 137/304] gpio: mt7621: pass mediatek_gpio_bank_probe() failure up the stack Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 138/304] pinctrl: sx150x: handle failure case of devm_kstrdup Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 139/304] iommu/amd: Fix amd_iommu=force_isolation Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 140/304] media: v4l2-device: Link subdevices to their parent devices if available Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 141/304] ARM: OMAP1: ams-delta: Fix audio permanently muted Sasha Levin
2019-01-28 15:40 ` [PATCH AUTOSEL 4.20 142/304] ARM: dts: Fix OMAP4430 SDP Ethernet startup Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 143/304] mips: bpf: fix encoding bug for mm_srlv32_op Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 144/304] media: coda: fix H.264 deblocking filter controls Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 145/304] arm64: dts: meson: Fix IRQ trigger type for macirq Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 146/304] ARM: dts: Fix up the D-Link DIR-685 MTD partition info Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 147/304] tracing: Have trace_stack nr_entries compare not be so subtle Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 148/304] Input: rotary-encoder - don't log EPROBE_DEFER to kernel log Sasha Levin
2019-01-28 18:24   ` Dmitry Torokhov
2019-01-28 19:08     ` Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 149/304] watchdog: renesas_wdt: don't set divider while watchdog is running Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 150/304] ARM: dts: imx51-zii-rdu1: Do not specify "power-gpio" for hpa1 Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 151/304] usb: dwc3: gadget: Disable CSP for stream OUT ep Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 152/304] iommu/arm-smmu-v3: Avoid memory corruption from Hisilicon MSI payloads Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 153/304] iommu/arm-smmu: Add support for qcom,smmu-v2 variant Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 154/304] iommu/arm-smmu-v3: Use explicit mb() when moving cons pointer Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 155/304] sata_rcar: fix deferred probing Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 156/304] clk: imx6sl: ensure MMDC CH0 handshake is bypassed Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 157/304] platform/x86: mlx-platform: Fix tachometer registers Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 158/304] cpuidle: big.LITTLE: fix refcount leak Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 159/304] OPP: Use opp_table->regulators to verify no regulator case Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 160/304] tee: optee: avoid possible double list_del() Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 161/304] drm/msm/dsi: fix dsi clock names in DSI 10nm PLL driver Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 162/304] drm/msm: dpu: Only check flush register against pending flushes Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 163/304] sched/topology: Add lowest CPU asymmetry sched_domain level pointer Sasha Levin
2019-01-28 16:14   ` Quentin Perret
2019-01-28 17:19     ` Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 164/304] lightnvm: pblk: fix resubmission of overwritten write err lbas Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 165/304] lightnvm: pblk: add lock protection to list operations Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 166/304] i2c-axxia: check for error conditions first Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 167/304] lightnvm: Fix uninitialized return value in nvm_get_chunk_meta() Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 168/304] phy: sun4i-usb: add support for missing USB PHY index Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 169/304] mlxsw: spectrum_acl: Limit priority value Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 170/304] udf: Fix BUG on corrupted inode Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 171/304] switchtec: Fix SWITCHTEC_IOCTL_EVENT_IDX_ALL flags overwrite Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 172/304] selftests/bpf: use __bpf_constant_htons in test_prog.c Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 173/304] ARM: pxa: avoid section mismatch warning Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 174/304] ASoC: fsl: Fix SND_SOC_EUKREA_TLV320 build error on i.MX8M Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 175/304] ARM: mmp: fix timer_init calls Sasha Levin
2019-01-28 16:41   ` Arnd Bergmann
2019-01-28 17:21     ` Sasha Levin
2019-01-28 17:27       ` Arnd Bergmann
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 176/304] fix dma-buf/udmabuf selftest Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 177/304] clk: qcom: Leave mmss noc on for 8998 Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 178/304] f2fs: fix to reorder set_page_dirty and wait_on_page_writeback Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 179/304] ipv6: Fix handling of LLA with VRF and sockets bound to VRF Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 180/304] tools: bpftool: fix -Wmissing declaration warnings Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 181/304] KVM: PPC: Book3S: Only report KVM_CAP_SPAPR_TCE_VFIO on powernv machines Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 182/304] mmc: bcm2835: Recover from MMC_SEND_EXT_CSD Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 183/304] mmc: bcm2835: reset host on timeout Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 184/304] mmc: meson-mx-sdio: check devm_kasprintf for failure Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 185/304] memstick: Prevent memstick host from getting runtime suspended during card detection Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 186/304] mmc: sdhci-of-esdhc: Fix timeout checks Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 187/304] mmc: sdhci-omap: " Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 188/304] mmc: sdhci-xenon: " Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 189/304] mmc: jz4740: Get CD/WP GPIOs from descriptors Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 190/304] usb: renesas_usbhs: add support for RZ/G2E Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 191/304] btrfs: harden agaist duplicate fsid on scanned devices Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 192/304] btrfs: reada: reorder dev-replace locks before radix tree preload Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 193/304] serial: sh-sci: Fix locking in sci_submit_rx() Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 194/304] serial: sh-sci: Resume PIO in sci_rx_interrupt() on DMA failure Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 195/304] tty: serial: samsung: Properly set flags in autoCTS mode Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 196/304] perf stat: Fix CSV mode column output for non-cgroup events Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 197/304] perf test: Fix perf_event_attr test failure Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 198/304] perf dso: Fix unchecked usage of strncpy() Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 199/304] perf header: " Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 200/304] btrfs: use tagged writepage to mitigate livelock of snapshot Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 201/304] perf probe: Fix unchecked usage of strncpy() Sasha Levin
2019-01-28 15:41 ` [PATCH AUTOSEL 4.20 202/304] i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E) Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 203/304] bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 204/304] KVM: s390: unregister debug feature on failing arch init Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 205/304] tools/power/x86/intel_pstate_tracer: Fix non root execution for post processing a trace file Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 206/304] pinctrl: rza1: Handle devm_kasprintf() failure cases Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 207/304] mac80211: Properly handle SKB with radiotap only Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 208/304] livepatch: check kzalloc return values Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 209/304] arm64: KVM: Skip MMIO insn after emulation Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 210/304] usb: musb: dsps: fix otg state machine Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 211/304] usb: musb: dsps: fix runtime pm for peripheral mode Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 212/304] perf header: Fix up argument to ctime() Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 213/304] perf tools: Cast off_t to s64 to avoid warning on bionic libc Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 214/304] percpu: convert spin_lock_irq to spin_lock_irqsave Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 215/304] tools uapi asm: Update asm-generic/unistd.h copy Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 216/304] net: hns3: fix error handling int the hns3_get_vector_ring_chain Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 217/304] net: hns3: fix incomplete uninitialization of IRQ in the hns3_nic_uninit_vector_data() Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 218/304] drm/amd/display: Add retry to read ddc_clock pin Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 219/304] drm/amd/display: Wait edp HPD to high in detect_sink Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 220/304] Bluetooth: hci_bcm: Handle deferred probing for the clock supply Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 221/304] drm/amd/display: fix YCbCr420 blank color Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 222/304] powerpc/uaccess: fix warning/error with access_ok() Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 223/304] mac80211: fix radiotap vendor presence bitmap handling Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 224/304] xfrm6_tunnel: Fix spi check in __xfrm6_tunnel_alloc_spi Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 225/304] mlxsw: spectrum: Properly cleanup LAG uppers when removing port from LAG Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 226/304] scsi: smartpqi: correct host serial num for ssa Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 227/304] scsi: smartpqi: correct volume status Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 228/304] scsi: smartpqi: increase fw status register read timeout Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 229/304] cw1200: Fix concurrency use-after-free bugs in cw1200_hw_scan() Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 230/304] net: hns3: add max vector number check for pf Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 231/304] net: hns3: fix the descriptor index when get rss type Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 232/304] net: hns3: don't restore rules when flow director is disabled Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 233/304] powerpc/perf: Fix thresholding counter data for unknown type Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 234/304] iwlwifi: mvm: fix setting HE ppe FW config Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 235/304] powerpc/powernv/ioda: Allocate indirect TCE levels of cached userspace addresses on demand Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 236/304] mlx5: update timecounter at least twice per counter overflow Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 237/304] drbd: narrow rcu_read_lock in drbd_sync_handshake Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 238/304] drbd: disconnect, if the wrong UUIDs are attached on a connected peer Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 239/304] drbd: skip spurious timeout (ping-timeo) when failing promote Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 240/304] drbd: Avoid Clang warning about pointless switch statment Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 241/304] ath10k: fix kernel panic due to use after free Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 242/304] ath10k: fix tx_stats memory leak Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 243/304] drm/amd/display: validate extended dongle caps Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 244/304] video: clps711x-fb: release disp device node in probe() Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 245/304] md: fix raid10 hang issue caused by barrier Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 246/304] fbdev: fbmem: behave better with small rotated displays and many CPUs Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 247/304] i40e: define proper net_device::neigh_priv_len Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 248/304] ice: Do not enable NAPI on q_vectors that have no rings Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 249/304] igb: Fix an issue that PME is not enabled during runtime suspend Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 250/304] ACPI/APEI: Clear GHES block_status before panic() Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 251/304] fbdev: fbcon: Fix unregister crash when more than one framebuffer Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 252/304] bpf: sk_msg, zap ingress queue on psock down Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 253/304] powerpc/mm: Fix reporting of kernel execute faults on the 8xx Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 254/304] bpf: sk_msg, fix socket data_ready events Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 255/304] pinctrl: meson: meson8: fix the GPIO function for the GPIOAO pins Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 256/304] pinctrl: meson: meson8b: " Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 257/304] KVM: x86: svm: report MSR_IA32_MCG_EXT_CTL as unsupported Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 258/304] powerpc/fadump: Do not allow hot-remove memory from fadump reserved area Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 259/304] selftests: kvm: report failed stage when exit reason is unexpected Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 260/304] kvm: Change offset in kvm_write_guest_offset_cached to unsigned Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 261/304] NFS: nfs_compare_mount_options always compare auth flavors Sasha Levin
2019-01-28 15:42 ` [PATCH AUTOSEL 4.20 262/304] perf build: Don't unconditionally link the libbfd feature test to -liberty and -lz Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 263/304] hwmon: (lm80) fix a missing check of the status of SMBus read Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 264/304] hwmon: (lm80) fix a missing check of bus read in lm80 probe Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 265/304] seq_buf: Make seq_buf_puts() null-terminate the buffer Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 266/304] crypto: ux500 - Use proper enum in cryp_set_dma_transfer Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 267/304] crypto: ux500 - Use proper enum in hash_set_dma_transfer Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 268/304] MIPS: ralink: Select CONFIG_CPU_MIPSR2_IRQ_VI on MT7620/8 Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 269/304] cifs: check ntwrk_buf_start for NULL before dereferencing it Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 270/304] f2fs: fix use-after-free issue when accessing sbi->stat_info Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 271/304] um: Avoid marking pages with "changed protection" Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 272/304] niu: fix missing checks of niu_pci_eeprom_read Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 273/304] f2fs: fix sbi->extent_list corruption issue Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 274/304] cgroup: fix parsing empty mount option string Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 275/304] perf python: Do not force closing original perf descriptor in evlist.get_pollfd() Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 276/304] scripts/decode_stacktrace: only strip base path when a prefix of the path Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 277/304] arch/sh/boards/mach-kfr2r09/setup.c: fix struct mtd_oob_ops build warning Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 278/304] mm/page_owner: clamp read count to PAGE_SIZE Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 279/304] ocfs2: don't clear bh uptodate for block read Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 280/304] ocfs2: improve ocfs2 Makefile Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 281/304] mm/page_alloc.c: don't call kasan_free_pages() at deferred mem init Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 282/304] zram: fix lockdep warning of free block handling Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 283/304] isdn: hisax: hfc_pci: Fix a possible concurrency use-after-free bug in HFCPCI_l1hw() Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 284/304] gdrom: fix a memory leak bug Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 285/304] fsl/fman: Use GFP_ATOMIC in {memac,tgec}_add_hash_mac_address() Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 286/304] block/swim3: Fix -EBUSY error when re-opening device after unmount Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 287/304] thermal: bcm2835: enable hwmon explicitly Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 288/304] kdb: Don't back trace on a cpu that didn't round up Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 289/304] thermal: tsens: qcom: do not create duplicate regmap debugfs entries Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 290/304] PCI: imx: Enable MSI from downstream components Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 291/304] block/swim3: Fix regression on PowerBook G3 Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 292/304] thermal: generic-adc: Fix adc to temp interpolation Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 293/304] bpf: fix check_map_access smin_value test when pointer contains offset Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 294/304] HID: lenovo: Add checks to fix of_led_classdev_register Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 295/304] arm64/sve: ptrace: Fix SVE_PT_REGS_OFFSET definition Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 296/304] fs/proc/base.c: use ns_capable instead of capable for timerslack_ns Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 297/304] kernel/hung_task.c: break RCU locks based on jiffies Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 298/304] proc/sysctl: fix return error for proc_doulongvec_minmax() Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 299/304] kernel/hung_task.c: force console verbose before panic Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 300/304] fs/epoll: drop ovflist branch prediction Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 301/304] exec: load_script: don't blindly truncate shebang string Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 302/304] kernel/kcov.c: mark write_comp_data() as notrace Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 303/304] scripts/gdb: fix lx-version string output Sasha Levin
2019-01-28 15:43 ` [PATCH AUTOSEL 4.20 304/304] xprtrdma: Don't wake pending tasks until disconnect is done Sasha Levin

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=20190128154341.47195-24-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=sboyd@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=wang.yi59@zte.com.cn \
    /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).