All of lore.kernel.org
 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, Drew Fustini <drew@beagleboard.org>,
	Tony Lindgren <tony@atomide.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 127/168] pinctrl-single: fix pcs_parse_pinconf() return value
Date: Mon, 17 Aug 2020 17:17:38 +0200	[thread overview]
Message-ID: <20200817143740.032343057@linuxfoundation.org> (raw)
In-Reply-To: <20200817143733.692105228@linuxfoundation.org>

From: Drew Fustini <drew@beagleboard.org>

[ Upstream commit f46fe79ff1b65692a65266a5bec6dbe2bf7fc70f ]

This patch causes pcs_parse_pinconf() to return -ENOTSUPP when no
pinctrl_map is added.  The current behavior is to return 0 when
!PCS_HAS_PINCONF or !nconfs.  Thus pcs_parse_one_pinctrl_entry()
incorrectly assumes that a map was added and sets num_maps = 2.

Analysis:
=========
The function pcs_parse_one_pinctrl_entry() calls pcs_parse_pinconf()
if PCS_HAS_PINCONF is enabled.  The function pcs_parse_pinconf()
returns 0 to indicate there was no error and num_maps is then set to 2:

 980 static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
 981                                                 struct device_node *np,
 982                                                 struct pinctrl_map **map,
 983                                                 unsigned *num_maps,
 984                                                 const char **pgnames)
 985 {
<snip>
1053         (*map)->type = PIN_MAP_TYPE_MUX_GROUP;
1054         (*map)->data.mux.group = np->name;
1055         (*map)->data.mux.function = np->name;
1056
1057         if (PCS_HAS_PINCONF && function) {
1058                 res = pcs_parse_pinconf(pcs, np, function, map);
1059                 if (res)
1060                         goto free_pingroups;
1061                 *num_maps = 2;
1062         } else {
1063                 *num_maps = 1;
1064         }

However, pcs_parse_pinconf() will also return 0 if !PCS_HAS_PINCONF or
!nconfs.  I believe these conditions should indicate that no map was
added by returning -ENOTSUPP. Otherwise pcs_parse_one_pinctrl_entry()
will set num_maps = 2 even though no maps were successfully added, as
it does not reach "m++" on line 940:

 895 static int pcs_parse_pinconf(struct pcs_device *pcs, struct device_node *np,
 896                              struct pcs_function *func,
 897                              struct pinctrl_map **map)
 898
 899 {
 900         struct pinctrl_map *m = *map;
<snip>
 917         /* If pinconf isn't supported, don't parse properties in below. */
 918         if (!PCS_HAS_PINCONF)
 919                 return 0;
 920
 921         /* cacluate how much properties are supported in current node */
 922         for (i = 0; i < ARRAY_SIZE(prop2); i++) {
 923                 if (of_find_property(np, prop2[i].name, NULL))
 924                         nconfs++;
 925         }
 926         for (i = 0; i < ARRAY_SIZE(prop4); i++) {
 927                 if (of_find_property(np, prop4[i].name, NULL))
 928                         nconfs++;
 929         }
 930         if (!nconfs)
 919                 return 0;
 932
 933         func->conf = devm_kcalloc(pcs->dev,
 934                                   nconfs, sizeof(struct pcs_conf_vals),
 935                                   GFP_KERNEL);
 936         if (!func->conf)
 937                 return -ENOMEM;
 938         func->nconfs = nconfs;
 939         conf = &(func->conf[0]);
 940         m++;

This situtation will cause a boot failure [0] on the BeagleBone Black
(AM3358) when am33xx_pinmux node in arch/arm/boot/dts/am33xx-l4.dtsi
has compatible = "pinconf-single" instead of "pinctrl-single".

The patch fixes this issue by returning -ENOSUPP when !PCS_HAS_PINCONF
or !nconfs, so that pcs_parse_one_pinctrl_entry() will know that no
map was added.

Logic is also added to pcs_parse_one_pinctrl_entry() to distinguish
between -ENOSUPP and other errors.  In the case of -ENOSUPP, num_maps
is set to 1 as it is valid for pinconf to be enabled and a given pin
group to not any pinconf properties.

[0] https://lore.kernel.org/linux-omap/20200529175544.GA3766151@x1/

Fixes: 9dddb4df90d1 ("pinctrl: single: support generic pinconf")
Signed-off-by: Drew Fustini <drew@beagleboard.org>
Acked-by: Tony Lindgren <tony@atomide.com>
Link: https://lore.kernel.org/r/20200608125143.GA2789203@x1
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/pinctrl/pinctrl-single.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c
index 7ec72ff2419a0..04a4e761e9a9c 100644
--- a/drivers/pinctrl/pinctrl-single.c
+++ b/drivers/pinctrl/pinctrl-single.c
@@ -916,7 +916,7 @@ static int pcs_parse_pinconf(struct pcs_device *pcs, struct device_node *np,
 
 	/* If pinconf isn't supported, don't parse properties in below. */
 	if (!PCS_HAS_PINCONF)
-		return 0;
+		return -ENOTSUPP;
 
 	/* cacluate how much properties are supported in current node */
 	for (i = 0; i < ARRAY_SIZE(prop2); i++) {
@@ -928,7 +928,7 @@ static int pcs_parse_pinconf(struct pcs_device *pcs, struct device_node *np,
 			nconfs++;
 	}
 	if (!nconfs)
-		return 0;
+		return -ENOTSUPP;
 
 	func->conf = devm_kcalloc(pcs->dev,
 				  nconfs, sizeof(struct pcs_conf_vals),
@@ -1056,9 +1056,12 @@ static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
 
 	if (PCS_HAS_PINCONF && function) {
 		res = pcs_parse_pinconf(pcs, np, function, map);
-		if (res)
+		if (res == 0)
+			*num_maps = 2;
+		else if (res == -ENOTSUPP)
+			*num_maps = 1;
+		else
 			goto free_pingroups;
-		*num_maps = 2;
 	} else {
 		*num_maps = 1;
 	}
-- 
2.25.1




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

Thread overview: 184+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-17 15:15 [PATCH 4.19 000/168] 4.19.140-rc1 review Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 001/168] tracepoint: Mark __tracepoint_strings __used Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 002/168] HID: input: Fix devices that return multiple bytes in battery report Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 003/168] cgroup: add missing skcd->no_refcnt check in cgroup_sk_clone() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 004/168] x86/mce/inject: Fix a wrong assignment of i_mce.status Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 005/168] sched/fair: Fix NOHZ next idle balance Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 006/168] sched: correct SD_flags returned by tl->sd_flags() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 007/168] arm64: dts: rockchip: fix rk3368-lion gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 008/168] arm64: dts: rockchip: fix rk3399-puma vcc5v0-host gpio Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 009/168] arm64: dts: rockchip: fix rk3399-puma gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 010/168] EDAC: Fix reference count leaks Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 011/168] arm64: dts: qcom: msm8916: Replace invalid bias-pull-none property Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 012/168] crypto: ccree - fix resource leak on error path Greg Kroah-Hartman
2020-08-18  9:22   ` Pavel Machek
2020-08-21  8:05     ` Herbert Xu
2020-08-17 15:15 ` [PATCH 4.19 013/168] firmware: arm_scmi: Fix SCMI genpd domain probing Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 014/168] arm64: dts: exynos: Fix silent hang after boot on Espresso Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 015/168] clk: scmi: Fix min and max rate when registering clocks with discrete rates Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 016/168] m68k: mac: Dont send IOP message until channel is idle Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 017/168] m68k: mac: Fix IOP status/control register writes Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 018/168] platform/x86: intel-hid: Fix return value check in check_acpi_dev() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 019/168] platform/x86: intel-vbtn: " Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 020/168] ARM: dts: gose: Fix ports node name for adv7180 Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 021/168] ARM: dts: gose: Fix ports node name for adv7612 Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 022/168] ARM: at91: pm: add missing put_device() call in at91_pm_sram_init() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 023/168] spi: lantiq: fix: Rx overflow error in full duplex mode Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 024/168] ARM: socfpga: PM: add missing put_device() call in socfpga_setup_ocram_self_refresh() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 025/168] drm/tilcdc: fix leak & null ref in panel_connector_get_modes Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 026/168] soc: qcom: rpmh-rsc: Set suppress_bind_attrs flag Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 027/168] Bluetooth: add a mutex lock to avoid UAF in do_enale_set Greg Kroah-Hartman
2020-08-18  9:40   ` Pavel Machek
2020-08-18  9:53     ` Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 028/168] loop: be paranoid on exit and prevent new additions / removals Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 029/168] fs/btrfs: Add cond_resched() for try_release_extent_mapping() stalls Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 030/168] drm/amdgpu: avoid dereferencing a NULL pointer Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 031/168] drm/radeon: Fix reference count leaks caused by pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 032/168] crypto: aesni - Fix build with LLVM_IAS=1 Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 033/168] video: fbdev: neofb: fix memory leak in neo_scan_monitor() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 034/168] md-cluster: fix wild pointer of unlock_all_bitmaps() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 035/168] arm64: dts: hisilicon: hikey: fixes to comply with adi, adv7533 DT binding Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 036/168] drm/etnaviv: fix ref count leak via pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 037/168] drm/nouveau: fix multiple instances of reference count leaks Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 038/168] usb: mtu3: clear dual mode of u3port when disable device Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 039/168] drm/debugfs: fix plain echo to connector "force" attribute Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 040/168] drm/radeon: disable AGP by default Greg Kroah-Hartman
2020-08-18  9:41   ` Pavel Machek
2020-08-18 10:48     ` Christian König
2020-08-17 15:16 ` [PATCH 4.19 041/168] irqchip/irq-mtk-sysirq: Replace spinlock with raw_spinlock Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 042/168] mm/mmap.c: Add cond_resched() for exit_mmap() CPU stalls Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 043/168] brcmfmac: keep SDIO watchdog running when console_interval is non-zero Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 044/168] brcmfmac: To fix Bss Info flag definition Bug Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 045/168] brcmfmac: set state of hanger slot to FREE when flushing PSQ Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 046/168] iwlegacy: Check the return value of pcie_capability_read_*() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 047/168] gpu: host1x: debug: Fix multiple channels emitting messages simultaneously Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 048/168] usb: gadget: net2280: fix memory leak on probe error handling paths Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 049/168] bdc: Fix bug causing crash after multiple disconnects Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 050/168] usb: bdc: Halt controller on suspend Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 051/168] dyndbg: fix a BUG_ON in ddebug_describe_flags Greg Kroah-Hartman
2020-08-18  9:51   ` Pavel Machek
2020-08-18 10:51     ` David Laight
2020-08-17 15:16 ` [PATCH 4.19 052/168] bcache: fix super block seq numbers comparision in register_cache_set() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 053/168] ACPICA: Do not increment operation_region reference counts for field units Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 054/168] drm/msm: ratelimit crtc event overflow error Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 055/168] agp/intel: Fix a memory leak on module initialisation failure Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 056/168] video: fbdev: sm712fb: fix an issue about iounmap for a wrong address Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 057/168] console: newport_con: fix an issue about leak related system resources Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 058/168] video: pxafb: Fix the function used to balance a dma_alloc_coherent() call Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 059/168] ath10k: Acquire tx_lock in tx error paths Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 060/168] iio: improve IIO_CONCENTRATION channel type description Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 061/168] drm/etnaviv: Fix error path on failure to enable bus clk Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 062/168] drm/arm: fix unintentional integer overflow on left shift Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 063/168] leds: lm355x: avoid enum conversion warning Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 064/168] media: omap3isp: Add missed v4l2_ctrl_handler_free() for preview_init_entities() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 065/168] ASoC: Intel: bxt_rt298: add missing .owner field Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 066/168] scsi: cumana_2: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 067/168] drm/mipi: use dcs write for mipi_dsi_dcs_set_tear_scanline Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 068/168] cxl: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 069/168] drm/radeon: fix array out-of-bounds read and write issues Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 070/168] scsi: powertec: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 071/168] scsi: eesox: " Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 072/168] ipvs: allow connection reuse for unconfirmed conntrack Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 073/168] media: firewire: Using uninitialized values in node_probe() Greg Kroah-Hartman
2020-08-18 21:34   ` Pavel Machek
2020-08-19  5:45     ` Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 074/168] media: exynos4-is: Add missed check for pinctrl_lookup_state() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 075/168] xfs: dont eat an EIO/ENOSPC writeback error when scrubbing data fork Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 076/168] xfs: fix reflink quota reservation accounting error Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 077/168] RDMA/rxe: Skip dgid check in loopback mode Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 078/168] PCI: Fix pci_cfg_wait queue locking problem Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 079/168] leds: core: Flush scheduled work for system suspend Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 080/168] drm: panel: simple: Fix bpc for LG LB070WV8 panel Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 081/168] phy: exynos5-usbdrd: Calibrating makes sense only for USB2.0 PHY Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 082/168] drm/bridge: sil_sii8620: initialize return of sii8620_readb Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 083/168] scsi: scsi_debug: Add check for sdebug_max_queue during module init Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 084/168] mwifiex: Prevent memory corruption handling keys Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 085/168] powerpc/vdso: Fix vdso cpu truncation Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 086/168] RDMA/qedr: SRQs bug fixes Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 087/168] RDMA/rxe: Prevent access to wr->next ptr afrer wr is posted to send queue Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 088/168] staging: rtl8192u: fix a dubious looking mask before a shift Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 089/168] PCI/ASPM: Add missing newline in sysfs policy Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 090/168] powerpc/book3s64/pkeys: Use PVR check instead of cpu feature Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 091/168] drm/imx: tve: fix regulator_disable error path Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 092/168] USB: serial: iuu_phoenix: fix led-activity helpers Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 093/168] usb: core: fix quirks_param_set() writing to a const pointer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 094/168] thermal: ti-soc-thermal: Fix reversed condition in ti_thermal_expose_sensor() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 095/168] coresight: tmc: Fix TMC mode read in tmc_read_unprepare_etb() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 096/168] MIPS: OCTEON: add missing put_device() call in dwc3_octeon_device_init() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 097/168] usb: dwc2: Fix error path in gadget registration Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 098/168] scsi: mesh: Fix panic after host or bus reset Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 099/168] net: dsa: mv88e6xxx: MV88E6097 does not support jumbo configuration Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 100/168] PCI: cadence: Fix updating Vendor ID and Subsystem Vendor ID register Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 101/168] RDMA/core: Fix return error value in _ib_modify_qp() to negative Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 102/168] Smack: fix another vsscanf out of bounds Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 103/168] Smack: prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 104/168] power: supply: check if calc_soc succeeded in pm860x_init_battery Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 105/168] Bluetooth: hci_h5: Set HCI_UART_RESET_ON_INIT to correct flags Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 106/168] Bluetooth: hci_serdev: Only unregister device if it was registered Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 107/168] net: dsa: rtl8366: Fix VLAN semantics Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 108/168] net: dsa: rtl8366: Fix VLAN set-up Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 109/168] powerpc/boot: Fix CONFIG_PPC_MPC52XX references Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 110/168] selftests/powerpc: Fix CPU affinity for child process Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 111/168] PCI: Release IVRS table in AMD ACS quirk Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 112/168] selftests/powerpc: Fix online CPU selection Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 113/168] ASoC: meson: axg-tdm-interface: fix link fmt setup Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 114/168] s390/qeth: dont process empty bridge port events Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 115/168] wl1251: fix always return 0 error Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 116/168] tools, build: Propagate build failures from tools/build/Makefile.build Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 117/168] net: ethernet: aquantia: Fix wrong return value Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 118/168] liquidio: Fix wrong return value in cn23xx_get_pf_num() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 119/168] net: spider_net: Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 120/168] fsl/fman: use 32-bit unsigned integer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 121/168] fsl/fman: fix dereference null return value Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 122/168] fsl/fman: fix unreachable code Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 123/168] fsl/fman: check dereferencing null pointer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 124/168] fsl/fman: fix eth hash table allocation Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 125/168] dlm: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 126/168] ocfs2: fix unbalanced locking Greg Kroah-Hartman
2020-08-17 15:17 ` Greg Kroah-Hartman [this message]
2020-08-17 15:17 ` [PATCH 4.19 128/168] svcrdma: Fix page leak in svc_rdma_recv_read_chunk() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 129/168] x86/fsgsbase/64: Fix NULL deref in 86_fsgsbase_read_task Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 130/168] crypto: aesni - add compatibility with IAS Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 131/168] af_packet: TPACKET_V3: fix fill status rwlock imbalance Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 132/168] drivers/net/wan/lapbether: Added needed_headroom and a skb->len check Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 133/168] net/nfc/rawsock.c: add CAP_NET_RAW check Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 134/168] net: Set fput_needed iff FDPUT_FPUT is set Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 135/168] net/tls: Fix kmap usage Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 136/168] net: refactor bind_bucket fastreuse into helper Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 137/168] net: initialize fastreuse on inet_inherit_port Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 138/168] USB: serial: cp210x: re-enable auto-RTS on open Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 139/168] USB: serial: cp210x: enable usb generic throttle/unthrottle Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 140/168] ALSA: hda - fix the micmute led status for Lenovo ThinkCentre AIO Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 141/168] ALSA: usb-audio: Creative USB X-Fi Pro SB1095 volume knob support Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 142/168] ALSA: usb-audio: fix overeager device match for MacroSilicon MS2109 Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 143/168] ALSA: usb-audio: work around streaming quirk " Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 144/168] pstore: Fix linking when crypto API disabled Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 145/168] crypto: hisilicon - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 146/168] crypto: qat - fix double free in qat_uclo_create_batch_init_list Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 147/168] crypto: ccp - Fix use of merged scatterlists Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 148/168] crypto: cpt - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 149/168] bitfield.h: dont compile-time validate _val in FIELD_FIT Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 150/168] fs/minix: check return value of sb_getblk() Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 151/168] fs/minix: dont allow getting deleted inodes Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 152/168] fs/minix: reject too-large maximum file size Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 153/168] ALSA: usb-audio: add quirk for Pioneer DDJ-RB Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 154/168] 9p: Fix memory leak in v9fs_mount Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 155/168] drm/ttm/nouveau: dont call tt destroy callback on alloc failure Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 156/168] NFS: Dont move layouts to plh_return_segs list while in use Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 157/168] NFS: Dont return layout segments that are " Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 158/168] cpufreq: dt: fix oops on armada37xx Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 159/168] include/asm-generic/vmlinux.lds.h: align ro_after_init Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 160/168] spi: spidev: Align buffers for DMA Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 161/168] mtd: rawnand: qcom: avoid write to unavailable register Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 162/168] parisc: Implement __smp_store_release and __smp_load_acquire barriers Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 163/168] parisc: mask out enable and reserved bits from sba imask Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 164/168] ARM: 8992/1: Fix unwind_frame for clang-built kernels Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 165/168] irqdomain/treewide: Free firmware node after domain removal Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 166/168] xen/balloon: fix accounting in alloc_xenballooned_pages error path Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 167/168] xen/balloon: make the balloon wait interruptible Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 168/168] xen/gntdev: Fix dmabuf import with non-zero sgt offset Greg Kroah-Hartman
2020-08-17 20:54 ` [PATCH 4.19 000/168] 4.19.140-rc1 review Jon Hunter
2020-08-18  6:11 ` Naresh Kamboju
2020-08-18 18:56 ` Guenter Roeck
2020-08-18 20:25 ` Pavel Machek
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=20200817143740.032343057@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=drew@beagleboard.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tony@atomide.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.