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, Kars Mulder <kerneldev@karsmulder.nl>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 156/270] usb: core: fix quirks_param_set() writing to a const pointer
Date: Mon, 17 Aug 2020 17:15:57 +0200	[thread overview]
Message-ID: <20200817143803.596772999@linuxfoundation.org> (raw)
In-Reply-To: <20200817143755.807583758@linuxfoundation.org>

From: Kars Mulder <kerneldev@karsmulder.nl>

[ Upstream commit b1b6bed3b5036509b449b5965285d5057ba42527 ]

The function quirks_param_set() takes as argument a const char* pointer
to the new value of the usbcore.quirks parameter. It then casts this
pointer to a non-const char* pointer and passes it to the strsep()
function, which overwrites the value.

Fix this by creating a copy of the value using kstrdup() and letting
that copy be written to by strsep().

Fixes: 027bd6cafd9a ("usb: core: Add "quirks" parameter for usbcore")
Signed-off-by: Kars Mulder <kerneldev@karsmulder.nl>

Link: https://lore.kernel.org/r/5ee2-5f048a00-21-618c5c00@230659773
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/usb/core/quirks.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c
index e0b77674869ce..c96c50faccf72 100644
--- a/drivers/usb/core/quirks.c
+++ b/drivers/usb/core/quirks.c
@@ -25,17 +25,23 @@ static unsigned int quirk_count;
 
 static char quirks_param[128];
 
-static int quirks_param_set(const char *val, const struct kernel_param *kp)
+static int quirks_param_set(const char *value, const struct kernel_param *kp)
 {
-	char *p, *field;
+	char *val, *p, *field;
 	u16 vid, pid;
 	u32 flags;
 	size_t i;
 	int err;
 
+	val = kstrdup(value, GFP_KERNEL);
+	if (!val)
+		return -ENOMEM;
+
 	err = param_set_copystring(val, kp);
-	if (err)
+	if (err) {
+		kfree(val);
 		return err;
+	}
 
 	mutex_lock(&quirk_mutex);
 
@@ -60,10 +66,11 @@ static int quirks_param_set(const char *val, const struct kernel_param *kp)
 	if (!quirk_list) {
 		quirk_count = 0;
 		mutex_unlock(&quirk_mutex);
+		kfree(val);
 		return -ENOMEM;
 	}
 
-	for (i = 0, p = (char *)val; p && *p;) {
+	for (i = 0, p = val; p && *p;) {
 		/* Each entry consists of VID:PID:flags */
 		field = strsep(&p, ":");
 		if (!field)
@@ -144,6 +151,7 @@ static int quirks_param_set(const char *val, const struct kernel_param *kp)
 
 unlock:
 	mutex_unlock(&quirk_mutex);
+	kfree(val);
 
 	return 0;
 }
-- 
2.25.1




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

Thread overview: 275+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-17 15:13 [PATCH 5.4 000/270] 5.4.59-rc1 review Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 001/270] tracepoint: Mark __tracepoint_strings __used Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 002/270] HID: input: Fix devices that return multiple bytes in battery report Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 003/270] nvme: add a Identify Namespace Identification Descriptor list quirk Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 004/270] fs/io_uring.c: Fix uninitialized variable is referenced in io_submit_sqe Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 005/270] clk: qcom: clk-rpmh: Wait for completion when enabling clocks Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 006/270] x86/mce/inject: Fix a wrong assignment of i_mce.status Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 007/270] sched/fair: Fix NOHZ next idle balance Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 008/270] sched: correct SD_flags returned by tl->sd_flags() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 009/270] arm64: dts: rockchip: fix rk3368-lion gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 010/270] arm64: dts: rockchip: fix rk3399-puma vcc5v0-host gpio Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 011/270] arm64: dts: rockchip: fix rk3399-puma gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 012/270] EDAC: Fix reference count leaks Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 013/270] crc-t10dif: Fix potential crypto notify dead-lock Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 014/270] arm64: dts: qcom: msm8916: Replace invalid bias-pull-none property Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 015/270] blktrace: fix debugfs use after free Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 016/270] crypto: ccree - fix resource leak on error path Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 017/270] ARM: exynos: MCPM: Restore big.LITTLE cpuidle support Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 018/270] firmware: arm_scmi: Fix SCMI genpd domain probing Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 019/270] arm64: dts: exynos: Fix silent hang after boot on Espresso Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 020/270] sched/uclamp: Fix initialization of struct uclamp_rq Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 021/270] clk: scmi: Fix min and max rate when registering clocks with discrete rates Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 022/270] m68k: mac: Dont send IOP message until channel is idle Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 023/270] m68k: mac: Fix IOP status/control register writes Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 024/270] platform/x86: intel-hid: Fix return value check in check_acpi_dev() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 025/270] platform/x86: intel-vbtn: " Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 026/270] ARM: dts: gose: Fix ports node name for adv7180 Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 027/270] ARM: dts: gose: Fix ports node name for adv7612 Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 028/270] ARM: at91: pm: add missing put_device() call in at91_pm_sram_init() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 029/270] ARM: dts: sunxi: bananapi-m2-plus-v1.2: Add regulator supply to all CPU cores Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 030/270] ARM: dts: sunxi: bananapi-m2-plus-v1.2: Fix CPU supply voltages Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 031/270] spi: lantiq: fix: Rx overflow error in full duplex mode Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 032/270] tpm: Require that all digests are present in TCG_PCR_EVENT2 structures Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 033/270] recordmcount: only record relocation of type R_AARCH64_CALL26 on arm64 Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 034/270] regulator: fix memory leak on error path of regulator_register() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 035/270] io_uring: fix sq array offset calculation Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 036/270] spi: rockchip: Fix error in SPI slave pio read Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 037/270] ARM: socfpga: PM: add missing put_device() call in socfpga_setup_ocram_self_refresh() Greg Kroah-Hartman
2020-08-17 15:13 ` [PATCH 5.4 038/270] iocost: Fix check condition of iocg abs_vdebt Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 039/270] irqchip/ti-sci-inta: Fix return value about devm_ioremap_resource() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 040/270] seccomp: Fix ioctl number for SECCOMP_IOCTL_NOTIF_ID_VALID Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 041/270] md: raid0/linear: fix dereference before null check on pointer mddev Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 042/270] nvme-tcp: fix controller reset hang during traffic Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 043/270] nvme-rdma: " Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 044/270] nvme-multipath: fix logic for non-optimized paths Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 045/270] nvme-multipath: do not fall back to __nvme_find_path() " Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 046/270] drm/tilcdc: fix leak & null ref in panel_connector_get_modes Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 047/270] soc: qcom: rpmh-rsc: Set suppress_bind_attrs flag Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 048/270] Bluetooth: add a mutex lock to avoid UAF in do_enale_set Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 049/270] loop: be paranoid on exit and prevent new additions / removals Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 050/270] fs/btrfs: Add cond_resched() for try_release_extent_mapping() stalls Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 051/270] drm/amdgpu: avoid dereferencing a NULL pointer Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 052/270] drm/radeon: Fix reference count leaks caused by pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 053/270] crypto: aesni - Fix build with LLVM_IAS=1 Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 054/270] video: fbdev: savage: fix memory leak on error handling path in probe Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 055/270] video: fbdev: neofb: fix memory leak in neo_scan_monitor() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 056/270] bus: ti-sysc: Add missing quirk flags for usb_host_hs Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 057/270] md-cluster: fix wild pointer of unlock_all_bitmaps() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 058/270] drm/nouveau/kms/nv50-: Fix disabling dithering Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 059/270] arm64: dts: hisilicon: hikey: fixes to comply with adi, adv7533 DT binding Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 060/270] drm/etnaviv: fix ref count leak via pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 061/270] drm/nouveau: fix reference count leak in nouveau_debugfs_strap_peek Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 062/270] drm/nouveau: fix multiple instances of reference count leaks Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 063/270] mmc: sdhci-cadence: do not use hardware tuning for SD mode Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 064/270] btrfs: fix lockdep splat from btrfs_dump_space_info Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 065/270] usb: mtu3: clear dual mode of u3port when disable device Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 066/270] drm: msm: a6xx: fix gpu failure after system resume Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 067/270] drm/msm: Fix a null pointer access in msm_gem_shrinker_count() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 068/270] drm/debugfs: fix plain echo to connector "force" attribute Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 069/270] drm/radeon: disable AGP by default Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 070/270] irqchip/irq-mtk-sysirq: Replace spinlock with raw_spinlock Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 071/270] mm/mmap.c: Add cond_resched() for exit_mmap() CPU stalls Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 072/270] drm/amdgpu/display bail early in dm_pp_get_static_clocks Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 073/270] drm/amd/powerplay: fix compile error with ARCH=arc Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 074/270] bpf: Fix fds_example SIGSEGV error Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 075/270] brcmfmac: keep SDIO watchdog running when console_interval is non-zero Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 076/270] brcmfmac: To fix Bss Info flag definition Bug Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 077/270] brcmfmac: set state of hanger slot to FREE when flushing PSQ Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 078/270] platform/x86: asus-nb-wmi: add support for ASUS ROG Zephyrus G14 and G15 Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 079/270] iwlegacy: Check the return value of pcie_capability_read_*() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 080/270] gpu: host1x: debug: Fix multiple channels emitting messages simultaneously Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 081/270] ionic: update eid test for overflow Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 082/270] mmc: sdhci-pci-o2micro: Bug fix for O2 host controller Seabird1 Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 083/270] usb: gadget: net2280: fix memory leak on probe error handling paths Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 084/270] bdc: Fix bug causing crash after multiple disconnects Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 085/270] usb: bdc: Halt controller on suspend Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 086/270] dyndbg: fix a BUG_ON in ddebug_describe_flags Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 087/270] bcache: fix super block seq numbers comparision in register_cache_set() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 088/270] ACPICA: Do not increment operation_region reference counts for field units Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 089/270] drm/msm: ratelimit crtc event overflow error Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 090/270] drm/gem: Fix a leak in drm_gem_objects_lookup() Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 091/270] drm/bridge: ti-sn65dsi86: Clear old error bits before AUX transfers Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 092/270] agp/intel: Fix a memory leak on module initialisation failure Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 093/270] mwifiex: Fix firmware filename for sd8977 chipset Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 094/270] mwifiex: Fix firmware filename for sd8997 chipset Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 095/270] btmrvl: Fix firmware filename for sd8977 chipset Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 096/270] btmrvl: Fix firmware filename for sd8997 chipset Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 097/270] video: fbdev: sm712fb: fix an issue about iounmap for a wrong address Greg Kroah-Hartman
2020-08-17 15:14 ` [PATCH 5.4 098/270] console: newport_con: fix an issue about leak related system resources Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 099/270] video: pxafb: Fix the function used to balance a dma_alloc_coherent() call Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 100/270] ath10k: Acquire tx_lock in tx error paths Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 101/270] iio: improve IIO_CONCENTRATION channel type description Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 102/270] drm/etnaviv: Fix error path on failure to enable bus clk Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 103/270] drm/arm: fix unintentional integer overflow on left shift Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 104/270] clk: bcm63xx-gate: fix last clock availability Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 105/270] leds: lm355x: avoid enum conversion warning Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 106/270] Bluetooth: btusb: fix up firmware download sequence Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 107/270] Bluetooth: btmtksdio: " Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 108/270] media: cxusb-analog: fix V4L2 dependency Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 109/270] media: marvell-ccic: Add missed v4l2_async_notifier_cleanup() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 110/270] media: omap3isp: Add missed v4l2_ctrl_handler_free() for preview_init_entities() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 111/270] ASoC: SOF: nocodec: add missing .owner field Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 112/270] ASoC: Intel: bxt_rt298: " Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 113/270] scsi: cumana_2: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 114/270] drm/mipi: use dcs write for mipi_dsi_dcs_set_tear_scanline Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 115/270] cxl: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 116/270] drm/radeon: fix array out-of-bounds read and write issues Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 117/270] staging: vchiq_arm: Add a matching unregister call Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 118/270] iavf: fix error return code in iavf_init_get_resources() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 119/270] iavf: Fix updating statistics Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 120/270] RDMA/core: Fix bogus WARN_ON during ib_unregister_device_queued() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 121/270] scsi: powertec: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 122/270] scsi: eesox: " Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 123/270] ipvs: allow connection reuse for unconfirmed conntrack Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 124/270] media: firewire: Using uninitialized values in node_probe() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 125/270] media: exynos4-is: Add missed check for pinctrl_lookup_state() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 126/270] media: cros-ec-cec: do not bail on device_init_wakeup failure Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 127/270] xfs: dont eat an EIO/ENOSPC writeback error when scrubbing data fork Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 128/270] xfs: fix reflink quota reservation accounting error Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 129/270] iomap: Make sure iomap_end is called after iomap_begin Greg Kroah-Hartman
2020-08-17 19:59   ` Andreas Gruenbacher
2020-08-17 15:15 ` [PATCH 5.4 130/270] RDMA/rxe: Skip dgid check in loopback mode Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 131/270] PCI: Fix pci_cfg_wait queue locking problem Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 132/270] drm/stm: repair runtime power management Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 133/270] kobject: Avoid premature parent object freeing in kobject_cleanup() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 134/270] leds: core: Flush scheduled work for system suspend Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 135/270] drm: panel: simple: Fix bpc for LG LB070WV8 panel Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 136/270] phy: exynos5-usbdrd: Calibrating makes sense only for USB2.0 PHY Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 137/270] drm/bridge: sil_sii8620: initialize return of sii8620_readb Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 138/270] scsi: scsi_debug: Add check for sdebug_max_queue during module init Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 139/270] mwifiex: Prevent memory corruption handling keys Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 140/270] kernfs: do not call fsnotify() with name without a parent Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 141/270] powerpc/rtas: dont online CPUs for partition suspend Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 142/270] powerpc/vdso: Fix vdso cpu truncation Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 143/270] RDMA/qedr: SRQs bug fixes Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 144/270] RDMA/rxe: Prevent access to wr->next ptr afrer wr is posted to send queue Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 145/270] ima: Have the LSM free its audit rule Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 146/270] staging: rtl8192u: fix a dubious looking mask before a shift Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 147/270] ASoC: meson: fixes the missed kfree() for axg_card_add_tdm_loopback Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 148/270] PCI/ASPM: Add missing newline in sysfs policy Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 149/270] phy: renesas: rcar-gen3-usb2: move irq registration to init Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 150/270] powerpc/book3s64/pkeys: Use PVR check instead of cpu feature Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 151/270] drm/imx: fix use after free Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 152/270] drm/imx: tve: fix regulator_disable error path Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 153/270] gpu: ipu-v3: Restore RGB32, BGR32 Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 154/270] spi: lantiq-ssc: Fix warning by using WQ_MEM_RECLAIM Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 155/270] USB: serial: iuu_phoenix: fix led-activity helpers Greg Kroah-Hartman
2020-08-17 15:15 ` Greg Kroah-Hartman [this message]
2020-08-17 15:15 ` [PATCH 5.4 157/270] thermal: ti-soc-thermal: Fix reversed condition in ti_thermal_expose_sensor() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 5.4 158/270] coresight: tmc: Fix TMC mode read in tmc_read_unprepare_etb() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 159/270] powerpc/perf: Fix missing is_sier_aviable() during build Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 160/270] mt76: mt7615: fix potential memory leak in mcu message handler Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 161/270] phy: armada-38x: fix NETA lockup when repeatedly switching speeds Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 162/270] MIPS: OCTEON: add missing put_device() call in dwc3_octeon_device_init() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 163/270] usb: dwc2: Fix error path in gadget registration Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 164/270] usb: gadget: f_uac2: fix AC Interface Header Descriptor wTotalLength Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 165/270] scsi: megaraid_sas: Clear affinity hint Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 166/270] scsi: mesh: Fix panic after host or bus reset Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 167/270] net: dsa: mv88e6xxx: MV88E6097 does not support jumbo configuration Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 168/270] macintosh/via-macii: Access autopoll_devs when inside lock Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 169/270] PCI: cadence: Fix updating Vendor ID and Subsystem Vendor ID register Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 170/270] RDMA/core: Fix return error value in _ib_modify_qp() to negative Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 171/270] Smack: fix another vsscanf out of bounds Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 172/270] Smack: prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 173/270] power: supply: check if calc_soc succeeded in pm860x_init_battery Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 174/270] Bluetooth: hci_h5: Set HCI_UART_RESET_ON_INIT to correct flags Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 175/270] Bluetooth: hci_serdev: Only unregister device if it was registered Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 176/270] net: dsa: rtl8366: Fix VLAN semantics Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 177/270] net: dsa: rtl8366: Fix VLAN set-up Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 178/270] xfs: fix inode allocation block res calculation precedence Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 179/270] selftests/powerpc: Squash spurious errors due to device removal Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 180/270] powerpc/32s: Fix CONFIG_BOOK3S_601 uses Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 181/270] powerpc/boot: Fix CONFIG_PPC_MPC52XX references Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 182/270] selftests/powerpc: Fix CPU affinity for child process Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 183/270] RDMA/netlink: Remove CAP_NET_RAW check when dump a raw QP Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 184/270] PCI: Release IVRS table in AMD ACS quirk Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 185/270] cpufreq: ap806: fix cpufreq driver needs ap cpu clk Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 186/270] selftests/powerpc: Fix online CPU selection Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 187/270] ASoC: meson: axg-tdm-interface: fix link fmt setup Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 188/270] ASoC: meson: axg-tdmin: fix g12a skew Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 189/270] ASoC: meson: axg-tdm-formatters: fix sclk inversion Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 190/270] ASoC: fsl_sai: Fix value of FSL_SAI_CR1_RFW_MASK Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 191/270] s390/qeth: dont process empty bridge port events Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 192/270] ice: Graceful error handling in HW table calloc failure Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 193/270] rtw88: fix LDPC field for RA info Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 194/270] rtw88: fix short GI capability based on current bandwidth Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 195/270] rtw88: coex: only skip coex triggered by BT info Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 196/270] wl1251: fix always return 0 error Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 197/270] tools, build: Propagate build failures from tools/build/Makefile.build Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 198/270] tools, bpftool: Fix wrong return value in do_dump() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 199/270] net/mlx5: DR, Change push vlan action sequence Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 200/270] net/mlx5: Delete extra dump stack that gives nothing Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 201/270] net: ethernet: aquantia: Fix wrong return value Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 202/270] liquidio: Fix wrong return value in cn23xx_get_pf_num() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 203/270] net: spider_net: Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 204/270] fsl/fman: use 32-bit unsigned integer Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 205/270] fsl/fman: fix dereference null return value Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 206/270] fsl/fman: fix unreachable code Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 207/270] fsl/fman: check dereferencing null pointer Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 208/270] fsl/fman: fix eth hash table allocation Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 209/270] net: thunderx: initialize VFs mailbox mutex before first usage Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 210/270] dlm: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 211/270] ocfs2: fix unbalanced locking Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 212/270] pinctrl-single: fix pcs_parse_pinconf() return value Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 213/270] svcrdma: Fix page leak in svc_rdma_recv_read_chunk() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 214/270] SUNRPC: Fix ("SUNRPC: Add "@len" parameter to gss_unwrap()") Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 215/270] x86/fsgsbase/64: Fix NULL deref in 86_fsgsbase_read_task Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 216/270] crypto: aesni - add compatibility with IAS Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 217/270] af_packet: TPACKET_V3: fix fill status rwlock imbalance Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 5.4 218/270] drivers/net/wan/lapbether: Added needed_headroom and a skb->len check Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 219/270] net: Fix potential memory leak in proto_register() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 220/270] net/nfc/rawsock.c: add CAP_NET_RAW check Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 221/270] net: phy: fix memory leak in device-create error path Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 222/270] net: Set fput_needed iff FDPUT_FPUT is set Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 223/270] net/tls: Fix kmap usage Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 224/270] tcp: correct read of TFO keys on big endian systems Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 225/270] vmxnet3: use correct tcp hdr length when packet is encapsulated Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 226/270] net: refactor bind_bucket fastreuse into helper Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 227/270] net: initialize fastreuse on inet_inherit_port Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 228/270] USB: serial: cp210x: re-enable auto-RTS on open Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 229/270] USB: serial: cp210x: enable usb generic throttle/unthrottle Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 230/270] ALSA: hda - fix the micmute led status for Lenovo ThinkCentre AIO Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 231/270] ALSA: usb-audio: Creative USB X-Fi Pro SB1095 volume knob support Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 232/270] ALSA: usb-audio: fix overeager device match for MacroSilicon MS2109 Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 233/270] ALSA: usb-audio: work around streaming quirk " Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 234/270] 9p: Fix memory leak in v9fs_mount Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 235/270] media: media-request: Fix crash if memory allocation fails Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 236/270] drm/ttm/nouveau: dont call tt destroy callback on alloc failure Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 237/270] io_uring: set ctx sq/cq entry count earlier Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 238/270] NFS: Dont move layouts to plh_return_segs list while in use Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 239/270] NFS: Dont return layout segments that are " Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 240/270] cpufreq: Fix locking issues with governors Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 241/270] cpufreq: dt: fix oops on armada37xx Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 242/270] include/asm-generic/vmlinux.lds.h: align ro_after_init Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 243/270] spi: spidev: Align buffers for DMA Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 244/270] mtd: rawnand: qcom: avoid write to unavailable register Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 245/270] erofs: fix extended inode could cross boundary Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 246/270] Revert "parisc: Drop LDCW barrier in CAS code when running UP" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 247/270] Revert "parisc: Use ldcw instruction for SMP spinlock release barrier" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 248/270] Revert "parisc: Revert "Release spinlocks using ordered store"" Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 249/270] parisc: Do not use an ordered store in pa_tlb_lock() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 250/270] parisc: Implement __smp_store_release and __smp_load_acquire barriers Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 251/270] parisc: mask out enable and reserved bits from sba imask Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 252/270] ARM: 8992/1: Fix unwind_frame for clang-built kernels Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 253/270] irqdomain/treewide: Free firmware node after domain removal Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 254/270] ALSA: usb-audio: add quirk for Pioneer DDJ-RB Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 255/270] tpm: Unify the mismatching TPM space buffer sizes Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 256/270] pstore: Fix linking when crypto API disabled Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 257/270] crypto: hisilicon - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 258/270] crypto: qat - fix double free in qat_uclo_create_batch_init_list Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 259/270] crypto: ccp - Fix use of merged scatterlists Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 260/270] crypto: cpt - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 261/270] bitfield.h: dont compile-time validate _val in FIELD_FIT Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 262/270] fs/minix: check return value of sb_getblk() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 263/270] fs/minix: dont allow getting deleted inodes Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 264/270] fs/minix: reject too-large maximum file size Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 265/270] xen/balloon: fix accounting in alloc_xenballooned_pages error path Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 266/270] xen/balloon: make the balloon wait interruptible Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 267/270] xen/gntdev: Fix dmabuf import with non-zero sgt offset Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 268/270] s390/dasd: fix inability to use DASD with DIAG driver Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 269/270] s390/gmap: improve THP splitting Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 5.4 270/270] io_uring: Fix NULL pointer dereference in loop_rw_iter() Greg Kroah-Hartman
2020-08-18  6:01 ` [PATCH 5.4 000/270] 5.4.59-rc1 review Naresh Kamboju
2020-08-18 18:56 ` Guenter Roeck
2020-08-18 22:37 ` 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=20200817143803.596772999@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=kerneldev@karsmulder.nl \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).