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, Hulk Robot <hulkci@huawei.com>,
	Lu Wei <luwei32@huawei.com>,
	Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.7 032/393] platform/x86: intel-vbtn: Fix return value check in check_acpi_dev()
Date: Mon, 17 Aug 2020 17:11:22 +0200	[thread overview]
Message-ID: <20200817143821.164685782@linuxfoundation.org> (raw)
In-Reply-To: <20200817143819.579311991@linuxfoundation.org>

From: Lu Wei <luwei32@huawei.com>

[ Upstream commit 64dd4a5a7d214a07e3d9f40227ec30ac8ba8796e ]

In the function check_acpi_dev(), if it fails to create
platform device, the return value is ERR_PTR() or NULL.
Thus it must use IS_ERR_OR_NULL() to check return value.

Fixes: 332e081225fc ("intel-vbtn: new driver for Intel Virtual Button")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Lu Wei <luwei32@huawei.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/platform/x86/intel-vbtn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/x86/intel-vbtn.c b/drivers/platform/x86/intel-vbtn.c
index a05b80955dcdd..5db8b7ad1f5df 100644
--- a/drivers/platform/x86/intel-vbtn.c
+++ b/drivers/platform/x86/intel-vbtn.c
@@ -286,7 +286,7 @@ check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv)
 		return AE_OK;
 
 	if (acpi_match_device_ids(dev, ids) == 0)
-		if (acpi_create_platform_device(dev, NULL))
+		if (!IS_ERR_OR_NULL(acpi_create_platform_device(dev, NULL)))
 			dev_info(&dev->dev,
 				 "intel-vbtn: created platform device\n");
 
-- 
2.25.1




  parent reply	other threads:[~2020-08-17 15:54 UTC|newest]

Thread overview: 398+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-17 15:10 [PATCH 5.7 000/393] 5.7.16-rc1 review Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 001/393] tracepoint: Mark __tracepoint_strings __used Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 002/393] kunit: capture stderr on all make subprocess calls Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 003/393] io_uring: abstract out task work running Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 004/393] HID: input: Fix devices that return multiple bytes in battery report Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 005/393] ARM: dts: stm32: fix uart7_pins_a comments in stm32mp15-pinctrl Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 006/393] x86/mce/inject: Fix a wrong assignment of i_mce.status Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 007/393] perf/x86/intel/uncore: Fix oops when counting IMC uncore events on some TGL Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 008/393] x86, sched: Bail out of frequency invariance if turbo frequency is unknown Greg Kroah-Hartman
2020-08-17 15:10 ` [PATCH 5.7 009/393] x86, sched: Bail out of frequency invariance if turbo_freq/base_freq gives 0 Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 010/393] sched/fair: Fix NOHZ next idle balance Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 011/393] sched: correct SD_flags returned by tl->sd_flags() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 012/393] arm64: dts: rockchip: fix rk3368-lion gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 013/393] arm64: dts: rockchip: fix rk3399-puma vcc5v0-host gpio Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 014/393] arm64: dts: rockchip: fix rk3399-puma gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 015/393] EDAC: Fix reference count leaks Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 016/393] crc-t10dif: Fix potential crypto notify dead-lock Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 017/393] arm64: dts: qcom: msm8916: Replace invalid bias-pull-none property Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 018/393] memory: tegra: Fix an error handling path in tegra186_emc_probe() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 019/393] blktrace: fix debugfs use after free Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 020/393] crypto: ccree - fix resource leak on error path Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 021/393] ARM: exynos: MCPM: Restore big.LITTLE cpuidle support Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 022/393] rcu/tree: Repeat the monitor if any free channel is busy Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 023/393] firmware: arm_scmi: Fix SCMI genpd domain probing Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 024/393] arm64: dts: sun50i-pinephone: dldo4 must not be >= 1.8V Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 025/393] arm64: dts: exynos: Fix silent hang after boot on Espresso Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 026/393] sched/uclamp: Fix initialization of struct uclamp_rq Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 027/393] crypto: qat - allow xts requests not multiple of block Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 028/393] clk: scmi: Fix min and max rate when registering clocks with discrete rates Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 029/393] m68k: mac: Dont send IOP message until channel is idle Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 030/393] m68k: mac: Fix IOP status/control register writes Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 031/393] platform/x86: intel-hid: Fix return value check in check_acpi_dev() Greg Kroah-Hartman
2020-08-17 15:11 ` Greg Kroah-Hartman [this message]
2020-08-17 15:11 ` [PATCH 5.7 033/393] ARM: dts: gose: Fix ports node name for adv7180 Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 034/393] arm64: dts: renesas: Fix SD Card/eMMC interface device node names Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 035/393] ARM: dts: gose: Fix ports node name for adv7612 Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 036/393] ARM: at91: pm: add missing put_device() call in at91_pm_sram_init() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 037/393] ARM: dts: exynos: Disable frequency scaling for FSYS bus on Odroid XU3 family Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 038/393] reset: intel: fix a compile warning about REG_OFFSET redefined Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 039/393] ARM: dts: sunxi: bananapi-m2-plus-v1.2: Add regulator supply to all CPU cores Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 040/393] ARM: dts: sunxi: bananapi-m2-plus-v1.2: Fix CPU supply voltages Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 041/393] spi: lantiq: fix: Rx overflow error in full duplex mode Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 042/393] tpm: Require that all digests are present in TCG_PCR_EVENT2 structures Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 043/393] recordmcount: only record relocation of type R_AARCH64_CALL26 on arm64 Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 044/393] regulator: fix memory leak on error path of regulator_register() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 045/393] io_uring: fix sq array offset calculation Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 046/393] arm64: dts: meson: fix mmc0 tuning error on Khadas VIM3 Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 047/393] soc: qcom: pdr: Reorder the PD state indication ack Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 048/393] spi: rockchip: Fix error in SPI slave pio read Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 049/393] ARM: socfpga: PM: add missing put_device() call in socfpga_setup_ocram_self_refresh() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 050/393] iocost: Fix check condition of iocg abs_vdebt Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 051/393] scripts/selinux/mdp: fix initial SID handling Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 052/393] irqchip/ti-sci-inta: Fix return value about devm_ioremap_resource() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 053/393] seccomp: Fix ioctl number for SECCOMP_IOCTL_NOTIF_ID_VALID Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 054/393] md: raid0/linear: fix dereference before null check on pointer mddev Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 055/393] irqchip/loongson-liointc: Fix potential dead lock Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 056/393] irqchip/irq-bcm7038-l1: Guard uses of cpu_logical_map Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 057/393] irqchip/gic-v4.1: Use GFP_ATOMIC flag in allocate_vpe_l1_table() Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 058/393] nvme-tcp: fix controller reset hang during traffic Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 059/393] nvme-rdma: " Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 060/393] nvme-multipath: fix logic for non-optimized paths Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 061/393] nvme-multipath: do not fall back to __nvme_find_path() " Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 062/393] block: dont do revalidate zones on invalid devices Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 063/393] drm/tilcdc: fix leak & null ref in panel_connector_get_modes Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 064/393] soc: qcom: rpmh-rsc: Set suppress_bind_attrs flag Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 065/393] net: mscc: ocelot: fix encoding destination ports into multicast IPv4 address Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 066/393] ARM: exynos: clear L310_AUX_CTRL_FULL_LINE_ZERO in default l2c_aux_val Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 067/393] Bluetooth: add a mutex lock to avoid UAF in do_enale_set Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 068/393] loop: be paranoid on exit and prevent new additions / removals Greg Kroah-Hartman
2020-08-17 15:11 ` [PATCH 5.7 069/393] io_uring: fix req->work corruption Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 070/393] fs/btrfs: Add cond_resched() for try_release_extent_mapping() stalls Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 071/393] drm/amdgpu: avoid dereferencing a NULL pointer Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 072/393] drm/radeon: Fix reference count leaks caused by pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 073/393] crypto: aesni - Fix build with LLVM_IAS=1 Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 074/393] video: fbdev: savage: fix memory leak on error handling path in probe Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 075/393] video: fbdev: neofb: fix memory leak in neo_scan_monitor() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 076/393] bus: ti-sysc: Add missing quirk flags for usb_host_hs Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 077/393] md-cluster: fix wild pointer of unlock_all_bitmaps() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 078/393] drm/nouveau/kms/nv50-: Fix disabling dithering Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 079/393] arm64: dts: hisilicon: hikey: fixes to comply with adi, adv7533 DT binding Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 080/393] drm/etnaviv: fix ref count leak via pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 081/393] memory: samsung: exynos5422-dmc: Do not ignore return code of regmap_read() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 082/393] drm/nouveau: fix reference count leak in nouveau_debugfs_strap_peek Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 083/393] drm/nouveau: fix multiple instances of reference count leaks Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 084/393] mmc: sdhci-cadence: do not use hardware tuning for SD mode Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 085/393] btrfs: fix lockdep splat from btrfs_dump_space_info Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 086/393] usb: mtu3: clear dual mode of u3port when disable device Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 087/393] drm: msm: a6xx: fix gpu failure after system resume Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 088/393] drm/msm: Fix a null pointer access in msm_gem_shrinker_count() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 089/393] drm/debugfs: fix plain echo to connector "force" attribute Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 090/393] drm/radeon: disable AGP by default Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 091/393] net: phy: mscc: restore the base page in vsc8514/8584_config_init Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 092/393] irqchip/irq-mtk-sysirq: Replace spinlock with raw_spinlock Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 093/393] mm/mmap.c: Add cond_resched() for exit_mmap() CPU stalls Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 094/393] drm/amd/display: Improve DisplayPort monitor interop Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 095/393] drm/amdgpu/display bail early in dm_pp_get_static_clocks Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 096/393] drm/amdgpu/display: properly guard the calls to swSMU functions Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 097/393] drm/amd/powerplay: fix compile error with ARCH=arc Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 098/393] bpf: Fix fds_example SIGSEGV error Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 099/393] Bluetooth: hci_qca: Bug fixes for SSR Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 100/393] brcmfmac: keep SDIO watchdog running when console_interval is non-zero Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 101/393] brcmfmac: To fix Bss Info flag definition Bug Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 102/393] brcmfmac: set state of hanger slot to FREE when flushing PSQ Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 103/393] platform/x86: asus-nb-wmi: add support for ASUS ROG Zephyrus G14 and G15 Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 104/393] iwlegacy: Check the return value of pcie_capability_read_*() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 105/393] gpu: host1x: debug: Fix multiple channels emitting messages simultaneously Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 106/393] drm/amd/powerplay: suppress compile error around BUG_ON Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 107/393] ionic: update eid test for overflow Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 108/393] x86/uaccess: Make __get_user_size() Clang compliant on 32-bit Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 109/393] mmc: sdhci-pci-o2micro: Bug fix for O2 host controller Seabird1 Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 110/393] usb: gadget: net2280: fix memory leak on probe error handling paths Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 111/393] bdc: Fix bug causing crash after multiple disconnects Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 112/393] usb: bdc: Halt controller on suspend Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 113/393] dyndbg: fix a BUG_ON in ddebug_describe_flags Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 114/393] bcache: fix super block seq numbers comparision in register_cache_set() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 115/393] btrfs: allow btrfs_truncate_block() to fallback to nocow for data space reservation Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 116/393] btrfs: qgroup: free per-trans reserved space when a subvolume gets dropped Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 117/393] ACPICA: Do not increment operation_region reference counts for field units Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 118/393] io_uring: fix racy overflow count reporting Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 119/393] io_uring: fix stalled deferred requests Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 120/393] crypto: caam - silence .setkey in case of bad key length Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 121/393] drm/msm: ratelimit crtc event overflow error Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 122/393] drm/gem: Fix a leak in drm_gem_objects_lookup() Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 123/393] drm/bridge: ti-sn65dsi86: Clear old error bits before AUX transfers Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 124/393] drm/bridge: ti-sn65dsi86: Fix off-by-one error in clock choice Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 125/393] drm/amdgpu: use the unlocked drm_gem_object_put Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 126/393] agp/intel: Fix a memory leak on module initialisation failure Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 127/393] mwifiex: Fix firmware filename for sd8977 chipset Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 128/393] mwifiex: Fix firmware filename for sd8997 chipset Greg Kroah-Hartman
2020-08-17 15:12 ` [PATCH 5.7 129/393] btmrvl: Fix firmware filename for sd8977 chipset Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 130/393] btmrvl: Fix firmware filename for sd8997 chipset Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 131/393] video: fbdev: sm712fb: fix an issue about iounmap for a wrong address Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 132/393] console: newport_con: fix an issue about leak related system resources Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 133/393] video: pxafb: Fix the function used to balance a dma_alloc_coherent() call Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 134/393] Bluetooth: hci_qca: Fix an error pointer dereference Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 135/393] Bluetooth: hci_qca: Only remove TX clock vote after TX is completed Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 136/393] Bluetooth: Allow suspend even when preparation has failed Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 137/393] ath10k: Acquire tx_lock in tx error paths Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 138/393] Bluetooth: hci_qca: Bug fix during SSR timeout Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 139/393] Bluetooth: hci_qca: Increase SoC idle timeout to 200ms Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 140/393] iio: improve IIO_CONCENTRATION channel type description Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 141/393] iio: amplifiers: ad8366: Change devm_gpiod_get() to optional and add the missed check Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 142/393] scsi: ufs: Fix imprecise load calculation in devfreq window Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 143/393] drm/etnaviv: Fix error path on failure to enable bus clk Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 144/393] drm/panfrost: Fix inbalance of devfreq record_busy/idle() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 145/393] drm/arm: fix unintentional integer overflow on left shift Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 146/393] clk: bcm63xx-gate: fix last clock availability Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 147/393] powerpc/mm: Fix typo in IS_ENABLED() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 148/393] powerpc/fixmap: Fix FIX_EARLY_DEBUG_BASE when page size is 256k Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 149/393] leds: lm355x: avoid enum conversion warning Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 150/393] Bluetooth: btusb: fix up firmware download sequence Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 151/393] Bluetooth: btmtksdio: " Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 152/393] media: cxusb-analog: fix V4L2 dependency Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 153/393] media: marvell-ccic: Add missed v4l2_async_notifier_cleanup() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 154/393] media: omap3isp: Add missed v4l2_ctrl_handler_free() for preview_init_entities() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 155/393] staging: most: avoid null pointer dereference when iface is null Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 156/393] dpaa2-eth: fix condition for number of buffer acquire retries Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 157/393] ASoC: SOF: nocodec: add missing .owner field Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 158/393] ASoC: Intel: cml_rt1011_rt5682: " Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 159/393] ASoC: Intel: sof_sdw: " Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 160/393] ASoC: Intel: bxt_rt298: " Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 161/393] net: atlantic: MACSec offload statistics checkpatch fix Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 162/393] scsi: cumana_2: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 163/393] drm/mipi: use dcs write for mipi_dsi_dcs_set_tear_scanline Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 164/393] cxl: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 165/393] lkdtm: Avoid more compiler optimizations for bad writes Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 166/393] selftests/lkdtm: Reset WARN_ONCE to avoid false negatives Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 167/393] lkdtm: Make arch-specific tests always available Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 168/393] net: ethernet: ti: am65-cpsw-nuss: restore vlan configuration while down/up Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 169/393] tracing: Move pipe reference to trace array instead of current_tracer Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 170/393] drm/amdgpu: ensure 0 is returned for success in jpeg_v2_5_wait_for_idle Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 171/393] drm/radeon: fix array out-of-bounds read and write issues Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 172/393] staging: vchiq_arm: Add a matching unregister call Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 173/393] iavf: fix error return code in iavf_init_get_resources() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 174/393] iavf: Fix updating statistics Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 175/393] RDMA/core: Fix bogus WARN_ON during ib_unregister_device_queued() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 176/393] scsi: powertec: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 177/393] scsi: eesox: " Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 178/393] ipvs: allow connection reuse for unconfirmed conntrack Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 179/393] media: firewire: Using uninitialized values in node_probe() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 180/393] media: allegro: Fix some NULL vs IS_ERR() checks in probe Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 181/393] media: staging: rkisp1: rsz: supported formats are the isps src formats, not sink formats Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 182/393] media: staging: rkisp1: rsz: fix resolution limitation on sink pad Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 183/393] media: tvp5150: Add missed media_entity_cleanup() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 184/393] media: exynos4-is: Add missed check for pinctrl_lookup_state() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 185/393] media: cros-ec-cec: do not bail on device_init_wakeup failure Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 186/393] xfs: dont eat an EIO/ENOSPC writeback error when scrubbing data fork Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 187/393] xfs: fix reflink quota reservation accounting error Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.7 188/393] iomap: Make sure iomap_end is called after iomap_begin Greg Kroah-Hartman
2020-08-17 19:55   ` Andreas Grünbacher
2020-08-17 15:13 ` [PATCH 5.7 189/393] RDMA/rxe: Skip dgid check in loopback mode Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 190/393] PCI: Fix pci_cfg_wait queue locking problem Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 191/393] samples: bpf: Fix bpf programs with kprobe/sys_connect event Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 192/393] drm/stm: repair runtime power management Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 193/393] kobject: Avoid premature parent object freeing in kobject_cleanup() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 194/393] leds: core: Flush scheduled work for system suspend Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 195/393] drm: panel: simple: Fix bpc for LG LB070WV8 panel Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 196/393] phy: exynos5-usbdrd: Calibrating makes sense only for USB2.0 PHY Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 197/393] mmc: sdhci-of-arasan: Add missed checks for devm_clk_register() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 198/393] drm/bridge: sil_sii8620: initialize return of sii8620_readb Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 199/393] scsi: scsi_debug: Add check for sdebug_max_queue during module init Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 200/393] mwifiex: Prevent memory corruption handling keys Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 201/393] kernfs: do not call fsnotify() with name without a parent Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 202/393] powerpc/pseries: remove cede offline state for CPUs Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 203/393] powerpc/rtas: dont online CPUs for partition suspend Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 204/393] powerpc/vdso: Fix vdso cpu truncation Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 205/393] RDMA/qedr: SRQs bug fixes Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 206/393] RDMA/rxe: Prevent access to wr->next ptr afrer wr is posted to send queue Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 207/393] ima: Have the LSM free its audit rule Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 208/393] ima: Free the entire rule when deleting a list of rules Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 209/393] ima: Free the entire rule if it fails to parse Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 210/393] ima: Fail rule parsing when buffer hook functions have an invalid action Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 211/393] ima: Fail rule parsing when the KEXEC_CMDLINE hook is combined with an invalid cond Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 212/393] ima: Fail rule parsing when the KEY_CHECK " Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 213/393] staging: rtl8192u: fix a dubious looking mask before a shift Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 214/393] ASoC: meson: fixes the missed kfree() for axg_card_add_tdm_loopback Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 215/393] PCI/ASPM: Add missing newline in sysfs policy Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 216/393] go7007: add sanity checking for endpoints Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 217/393] media: s5p-g2d: Fix a memory leak in an error handling path in g2d_probe() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 218/393] phy: renesas: rcar-gen3-usb2: move irq registration to init Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 219/393] powerpc/book3s64/pkeys: Use PVR check instead of cpu feature Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 220/393] drm/imx: fix use after free Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 221/393] drm/imx: tve: fix regulator_disable error path Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 222/393] gpu: ipu-v3: Restore RGB32, BGR32 Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 223/393] spi: lantiq-ssc: Fix warning by using WQ_MEM_RECLAIM Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 224/393] USB: serial: iuu_phoenix: fix led-activity helpers Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 225/393] clk: qcom: gcc: Make disp gpll0 branch aon for sc7180/sdm845 Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 226/393] usb: core: fix quirks_param_set() writing to a const pointer Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 227/393] thermal: ti-soc-thermal: Fix reversed condition in ti_thermal_expose_sensor() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 228/393] coresight: etmv4: Fix resource selector constant Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 229/393] coresight: etmv4: Counter values not saved on disable Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 230/393] coresight: tmc: Fix TMC mode read in tmc_read_unprepare_etb() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 231/393] coresight: etm4x: Fix save/restore during cpu idle Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 232/393] powerpc/perf: Fix missing is_sier_aviable() during build Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 233/393] mt76: mt7615: fix potential memory leak in mcu message handler Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 234/393] mt76: mt7615: fix possible memory leak in mt7615_mcu_wtbl_sta_add Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 235/393] phy: armada-38x: fix NETA lockup when repeatedly switching speeds Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 236/393] s390/bpf: Fix sign extension in branch_ku Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 237/393] s390/bpf: Use brcl for jumping to exit_ip if necessary Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 238/393] s390/bpf: Tolerate not converging code shrinking Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 239/393] tools/bpftool: Fix error handing in do_skeleton() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 240/393] ASoC: tas2770: Fix reset gpio property name Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 241/393] ASoC: hdac_hda: fix deadlock after PCM open error Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 242/393] MIPS: OCTEON: add missing put_device() call in dwc3_octeon_device_init() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 243/393] thermal: int340x: processor_thermal: fix: update Jasper Lake PCI id Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 244/393] usb: dwc2: Fix error path in gadget registration Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 245/393] usb: gadget: f_uac2: fix AC Interface Header Descriptor wTotalLength Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 246/393] scsi: megaraid_sas: Clear affinity hint Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 247/393] scsi: mesh: Fix panic after host or bus reset Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 248/393] net: dsa: mv88e6xxx: MV88E6097 does not support jumbo configuration Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.7 249/393] macintosh/via-macii: Access autopoll_devs when inside lock Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 250/393] PCI: cadence: Fix cdns_pcie_{host|ep}_setup() error path Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 251/393] PCI: cadence: Fix updating Vendor ID and Subsystem Vendor ID register Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 252/393] RDMA/core: Fix return error value in _ib_modify_qp() to negative Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 253/393] Smack: fix another vsscanf out of bounds Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 254/393] Smack: prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 255/393] power: supply: check if calc_soc succeeded in pm860x_init_battery Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 256/393] Bluetooth: btusb: Fix and detect most of the Chinese Bluetooth controllers Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 257/393] Bluetooth: hci_h5: Set HCI_UART_RESET_ON_INIT to correct flags Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 258/393] Bluetooth: hci_serdev: Only unregister device if it was registered Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 259/393] Bluetooth: Fix suspend notifier race Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 260/393] Bluetooth: hci_qca: Stop collecting memdump again for command timeout during SSR Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 261/393] net: dsa: rtl8366: Fix VLAN semantics Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 262/393] net: dsa: rtl8366: Fix VLAN set-up Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 263/393] xfs: fix inode allocation block res calculation precedence Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 264/393] xfs: clear XFS_DQ_FREEING if we cant lock the dquot buffer to flush Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 265/393] selftests/powerpc: Squash spurious errors due to device removal Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 266/393] powerpc/32s: Fix CONFIG_BOOK3S_601 uses Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 267/393] powerpc/boot: Fix CONFIG_PPC_MPC52XX references Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 268/393] selftests/powerpc: Fix CPU affinity for child process Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 269/393] nvmem: sprd: Fix return value of sprd_efuse_probe() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 270/393] RDMA/netlink: Remove CAP_NET_RAW check when dump a raw QP Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 271/393] PCI: Release IVRS table in AMD ACS quirk Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 272/393] cpufreq: ap806: fix cpufreq driver needs ap cpu clk Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 273/393] powerpc/pseries/hotplug-cpu: Remove double free in error path Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 274/393] selftests/powerpc: Fix online CPU selection Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 275/393] ASoC: meson: axg-tdm-interface: fix link fmt setup Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 276/393] ASoC: meson: axg-tdmin: fix g12a skew Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 277/393] ASoC: meson: axg-tdm-formatters: fix sclk inversion Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 278/393] ASoC: soc-core: Fix regression causing sysfs entries to disappear Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 279/393] libbpf: Fix register in PT_REGS MIPS macros Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 280/393] ASoC: fsl_sai: Fix value of FSL_SAI_CR1_RFW_MASK Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 281/393] s390/qeth: tolerate pre-filled RX buffer Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 282/393] s390/qeth: dont process empty bridge port events Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 283/393] ice: Clear and free XLT entries on reset Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 284/393] ice: Graceful error handling in HW table calloc failure Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 285/393] netfilter: nft_meta: fix iifgroup matching Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 286/393] rtw88: fix LDPC field for RA info Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 287/393] rtw88: fix short GI capability based on current bandwidth Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 288/393] rtw88: coex: only skip coex triggered by BT info Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 289/393] qtnfmac: Missing platform_device_unregister() on error in qtnf_core_mac_alloc() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 290/393] wl1251: fix always return 0 error Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 291/393] tools, build: Propagate build failures from tools/build/Makefile.build Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 292/393] tools, bpftool: Fix wrong return value in do_dump() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 293/393] net/mlx5: DR, Change push vlan action sequence Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 294/393] net/mlx5: Delete extra dump stack that gives nothing Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 295/393] ftrace: Fix ftrace_trace_task return value Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 296/393] net: ethernet: aquantia: Fix wrong " Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 297/393] liquidio: Fix wrong return value in cn23xx_get_pf_num() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 298/393] net: sgi: ioc3-eth: Fix the size used in some dma_free_coherent() calls Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 299/393] net: spider_net: Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 300/393] fsl/fman: use 32-bit unsigned integer Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 301/393] fsl/fman: fix dereference null return value Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 302/393] fsl/fman: fix unreachable code Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 303/393] fsl/fman: check dereferencing null pointer Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 304/393] fsl/fman: fix eth hash table allocation Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 305/393] gpio: dont use same lockdep class for all devm_gpiochip_add_data users Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 306/393] net: thunderx: initialize VFs mailbox mutex before first usage Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 307/393] media: mtk-mdp: Fix a refcounting bug on error in init Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 308/393] dlm: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.7 309/393] ocfs2: fix unbalanced locking Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 310/393] pinctrl-single: fix pcs_parse_pinconf() return value Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 311/393] mtd: rawnand: brcmnand: Dont default to edu transfer Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 312/393] svcrdma: Fix page leak in svc_rdma_recv_read_chunk() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 313/393] nfsd: avoid a NULL dereference in __cld_pipe_upcall() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 314/393] SUNRPC: Fix ("SUNRPC: Add "@len" parameter to gss_unwrap()") Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 315/393] x86/fsgsbase/64: Fix NULL deref in 86_fsgsbase_read_task Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 316/393] crypto: aesni - add compatibility with IAS Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 317/393] af_packet: TPACKET_V3: fix fill status rwlock imbalance Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 318/393] drivers/net/wan/lapbether: Added needed_headroom and a skb->len check Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 319/393] net: Fix potential memory leak in proto_register() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 320/393] net/nfc/rawsock.c: add CAP_NET_RAW check Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 321/393] net: phy: fix memory leak in device-create error path Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 322/393] net: Set fput_needed iff FDPUT_FPUT is set Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 323/393] net/tls: Fix kmap usage Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 324/393] tcp: correct read of TFO keys on big endian systems Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 325/393] vmxnet3: use correct tcp hdr length when packet is encapsulated Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 326/393] net: refactor bind_bucket fastreuse into helper Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 327/393] net: initialize fastreuse on inet_inherit_port Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 328/393] vsock: fix potential null pointer dereference in vsock_poll() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 329/393] net: phy: marvell10g: fix null pointer dereference Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 330/393] USB: serial: cp210x: re-enable auto-RTS on open Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 331/393] USB: serial: cp210x: enable usb generic throttle/unthrottle Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 332/393] usb: cdns3: gadget: always zeroed TRB buffer when enable endpoint Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 333/393] vdpasim: protect concurrent access to iommu iotlb Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 334/393] ALSA: hda - fix the micmute led status for Lenovo ThinkCentre AIO Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 335/393] ALSA: usb-audio: Creative USB X-Fi Pro SB1095 volume knob support Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 336/393] ALSA: usb-audio: fix overeager device match for MacroSilicon MS2109 Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 337/393] ALSA: usb-audio: work around streaming quirk " Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 338/393] ALSA: usb-audio: add quirk for Pioneer DDJ-RB Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 339/393] tpm: Unify the mismatching TPM space buffer sizes Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 340/393] pstore: Fix linking when crypto API disabled Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 341/393] crypto: hisilicon - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 342/393] crypto: qat - fix double free in qat_uclo_create_batch_init_list Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 343/393] crypto: ccp - Fix use of merged scatterlists Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 344/393] crypto: cpt - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 345/393] tick/nohz: Narrow down noise while setting current tasks tick dependency Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 346/393] bitfield.h: dont compile-time validate _val in FIELD_FIT Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 347/393] fs/minix: check return value of sb_getblk() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 348/393] fs/minix: dont allow getting deleted inodes Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 349/393] fs/minix: reject too-large maximum file size Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 350/393] kvm: x86: replace kvm_spec_ctrl_test_value with runtime test on the host Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 351/393] 9p: Fix memory leak in v9fs_mount Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 352/393] driver core: Fix probe_count imbalance in really_probe() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 353/393] media: media-request: Fix crash if memory allocation fails Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 354/393] drm/ttm/nouveau: dont call tt destroy callback on alloc failure Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 355/393] io_uring: set ctx sq/cq entry count earlier Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 356/393] io_uring: use TWA_SIGNAL for task_work uncondtionally Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 357/393] io_uring: fail poll arm on queue proc failure Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 358/393] NFS: Dont move layouts to plh_return_segs list while in use Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 359/393] NFS: Dont return layout segments that are " Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 360/393] cpufreq: Fix locking issues with governors Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 361/393] cpufreq: dt: fix oops on armada37xx Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 362/393] include/asm-generic/vmlinux.lds.h: align ro_after_init Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 363/393] PM / devfreq: rk3399_dmc: Fix kernel oops when rockchip,pmu is absent Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 364/393] PM / devfreq: Fix indentaion of devfreq_summary debugfs node Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 365/393] spi: spidev: Align buffers for DMA Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 366/393] mtd: rawnand: qcom: avoid write to unavailable register Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 367/393] mtd: spi-nor: intel-spi: Simulate WRDI command Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 368/393] erofs: fix extended inode could cross boundary Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.7 369/393] Revert "parisc: Improve interrupt handling in arch_spin_lock_flags()" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 370/393] Revert "parisc: Drop LDCW barrier in CAS code when running UP" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 371/393] Revert "parisc: Use ldcw instruction for SMP spinlock release barrier" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 372/393] Revert "parisc: Revert "Release spinlocks using ordered store"" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 373/393] parisc: Do not use an ordered store in pa_tlb_lock() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 374/393] parisc: Implement __smp_store_release and __smp_load_acquire barriers Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 375/393] parisc: mask out enable and reserved bits from sba imask Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 376/393] ARM: dts: exynos: Extend all Exynos5800 A15s OPPs with max voltage data Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 377/393] ARM: 8992/1: Fix unwind_frame for clang-built kernels Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 378/393] firmware: qcom_scm: Fix legacy convention SCM accessors Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 379/393] irqdomain/treewide: Free firmware node after domain removal Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 380/393] firmware_loader: EFI firmware loader must handle pre-allocated buffer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 381/393] xen/balloon: fix accounting in alloc_xenballooned_pages error path Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 382/393] xen/balloon: make the balloon wait interruptible Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 383/393] xen/gntdev: Fix dmabuf import with non-zero sgt offset Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 384/393] drm/xen-front: Fix misused IS_ERR_OR_NULL checks Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 385/393] s390/dasd: fix inability to use DASD with DIAG driver Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 386/393] s390/numa: set node distance to LOCAL_DISTANCE Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 387/393] s390/gmap: improve THP splitting Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 388/393] io_uring: sanitize double poll handling Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 389/393] io_uring: Fix NULL pointer dereference in loop_rw_iter() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 390/393] task_work: only grab task signal lock when needed Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 391/393] io_uring: add missing REQ_F_COMP_LOCKED for nested requests Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 392/393] io_uring: enable lookup of links holding inflight files Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.7 393/393] io_uring: hold ctx reference around task_work queue + execute Greg Kroah-Hartman
2020-08-18  5:55 ` [PATCH 5.7 000/393] 5.7.16-rc1 review Naresh Kamboju
2020-08-18 18:57 ` Guenter Roeck
2020-08-18 22:36 ` Shuah Khan

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=20200817143821.164685782@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=hulkci@huawei.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luwei32@huawei.com \
    --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).