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,
	Arend van Spriel <arend.vanspriel@broadcom.com>,
	Wright Feng <wright.feng@cypress.com>,
	Chi-hsien Lin <chi-hsien.lin@cypress.com>,
	Kalle Valo <kvalo@codeaurora.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.8 120/464] brcmfmac: set state of hanger slot to FREE when flushing PSQ
Date: Mon, 17 Aug 2020 17:11:13 +0200	[thread overview]
Message-ID: <20200817143839.558007075@linuxfoundation.org> (raw)
In-Reply-To: <20200817143833.737102804@linuxfoundation.org>

From: Wright Feng <wright.feng@cypress.com>

[ Upstream commit fcdd7a875def793c38d7369633af3eba6c7cf089 ]

When USB or SDIO device got abnormal bus disconnection, host driver
tried to clean up the skbs in PSQ and TXQ (The skb's pointer in hanger
slot linked to PSQ and TSQ), so we should set the state of skb hanger slot
to BRCMF_FWS_HANGER_ITEM_STATE_FREE before freeing skb.
In brcmf_fws_bus_txq_cleanup it already sets
BRCMF_FWS_HANGER_ITEM_STATE_FREE before freeing skb, therefore we add the
same thing in brcmf_fws_psq_flush to avoid following warning message.

   [ 1580.012880] ------------   [ cut here ]------------
   [ 1580.017550] WARNING: CPU: 3 PID: 3065 at
drivers/net/wireless/broadcom/brcm80211/brcmutil/utils.c:49
brcmu_pkt_buf_free_skb+0x21/0x30 [brcmutil]
   [ 1580.184017] Call Trace:
   [ 1580.186514]  brcmf_fws_cleanup+0x14e/0x190 [brcmfmac]
   [ 1580.191594]  brcmf_fws_del_interface+0x70/0x90 [brcmfmac]
   [ 1580.197029]  brcmf_proto_bcdc_del_if+0xe/0x10 [brcmfmac]
   [ 1580.202418]  brcmf_remove_interface+0x69/0x190 [brcmfmac]
   [ 1580.207888]  brcmf_detach+0x90/0xe0 [brcmfmac]
   [ 1580.212385]  brcmf_usb_disconnect+0x76/0xb0 [brcmfmac]
   [ 1580.217557]  usb_unbind_interface+0x72/0x260
   [ 1580.221857]  device_release_driver_internal+0x141/0x200
   [ 1580.227152]  device_release_driver+0x12/0x20
   [ 1580.231460]  bus_remove_device+0xfd/0x170
   [ 1580.235504]  device_del+0x1d9/0x300
   [ 1580.239041]  usb_disable_device+0x9e/0x270
   [ 1580.243160]  usb_disconnect+0x94/0x270
   [ 1580.246980]  hub_event+0x76d/0x13b0
   [ 1580.250499]  process_one_work+0x144/0x360
   [ 1580.254564]  worker_thread+0x4d/0x3c0
   [ 1580.258247]  kthread+0x109/0x140
   [ 1580.261515]  ? rescuer_thread+0x340/0x340
   [ 1580.265543]  ? kthread_park+0x60/0x60
   [ 1580.269237]  ? SyS_exit_group+0x14/0x20
   [ 1580.273118]  ret_from_fork+0x25/0x30
   [ 1580.300446] ------------   [ cut here ]------------

Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: Wright Feng <wright.feng@cypress.com>
Signed-off-by: Chi-hsien Lin <chi-hsien.lin@cypress.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200624091608.25154-2-wright.feng@cypress.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.c
index 09701262330d6..babaac682f132 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.c
@@ -621,6 +621,7 @@ static inline int brcmf_fws_hanger_poppkt(struct brcmf_fws_hanger *h,
 static void brcmf_fws_psq_flush(struct brcmf_fws_info *fws, struct pktq *q,
 				int ifidx)
 {
+	struct brcmf_fws_hanger_item *hi;
 	bool (*matchfn)(struct sk_buff *, void *) = NULL;
 	struct sk_buff *skb;
 	int prec;
@@ -632,6 +633,9 @@ static void brcmf_fws_psq_flush(struct brcmf_fws_info *fws, struct pktq *q,
 		skb = brcmu_pktq_pdeq_match(q, prec, matchfn, &ifidx);
 		while (skb) {
 			hslot = brcmf_skb_htod_tag_get_field(skb, HSLOT);
+			hi = &fws->hanger.items[hslot];
+			WARN_ON(skb != hi->pkt);
+			hi->state = BRCMF_FWS_HANGER_ITEM_STATE_FREE;
 			brcmf_fws_hanger_poppkt(&fws->hanger, hslot, &skb,
 						true);
 			brcmu_pkt_buf_free_skb(skb);
-- 
2.25.1




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

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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200817143839.558007075@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=arend.vanspriel@broadcom.com \
    --cc=chi-hsien.lin@cypress.com \
    --cc=kvalo@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=wright.feng@cypress.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 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).