stable.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, Tsuchiya Yuto <kitakar@gmail.com>,
	Kalle Valo <kvalo@codeaurora.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 120/453] mwifiex: fix mwifiex_shutdown_sw() causing sw reset failure
Date: Mon, 28 Dec 2020 13:45:56 +0100	[thread overview]
Message-ID: <20201228124942.989189991@linuxfoundation.org> (raw)
In-Reply-To: <20201228124937.240114599@linuxfoundation.org>

From: Tsuchiya Yuto <kitakar@gmail.com>

[ Upstream commit fa74cb1dc0f4da46c441b735ca865ac52de42c0e ]

When a PCIe function level reset (FLR) is performed but without fw reset for
some reasons (e.g., on Microsoft Surface devices, fw reset requires other
quirks), it fails to reset wifi properly. You can trigger the issue on such
devices via debugfs entry for reset:

    $ echo 1 | sudo tee /sys/kernel/debug/mwifiex/mlan0/reset

and the resulting dmesg log:

    [   45.740508] mwifiex_pcie 0000:03:00.0: Resetting per request
    [   45.742937] mwifiex_pcie 0000:03:00.0: info: successfully disconnected from [BSSID]: reason code 3
    [   45.744666] mwifiex_pcie 0000:03:00.0: info: shutdown mwifiex...
    [   45.751530] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.751539] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771691] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771695] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   45.771697] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771698] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   45.771699] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771701] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   45.771702] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771703] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   45.771704] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771705] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   45.771707] mwifiex_pcie 0000:03:00.0: PREP_CMD: card is removed
    [   45.771708] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   53.099343] mwifiex_pcie 0000:03:00.0: info: trying to associate to '[SSID]' bssid [BSSID]
    [   53.241870] mwifiex_pcie 0000:03:00.0: info: associated to bssid [BSSID] successfully
    [   75.377942] mwifiex_pcie 0000:03:00.0: cmd_wait_q terminated: -110
    [   85.385491] mwifiex_pcie 0000:03:00.0: info: successfully disconnected from [BSSID]: reason code 15
    [   87.539408] mwifiex_pcie 0000:03:00.0: cmd_wait_q terminated: -110
    [   87.539412] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [   99.699917] mwifiex_pcie 0000:03:00.0: cmd_wait_q terminated: -110
    [   99.699925] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [  111.859802] mwifiex_pcie 0000:03:00.0: cmd_wait_q terminated: -110
    [  111.859808] mwifiex_pcie 0000:03:00.0: deleting the crypto keys
    [...]

When comparing mwifiex_shutdown_sw() with mwifiex_pcie_remove(), it
lacks mwifiex_init_shutdown_fw().

This commit fixes mwifiex_shutdown_sw() by adding the missing
mwifiex_init_shutdown_fw().

Fixes: 4c5dae59d2e9 ("mwifiex: add PCIe function level reset support")
Signed-off-by: Tsuchiya Yuto <kitakar@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20201028142110.18144-2-kitakar@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/wireless/marvell/mwifiex/main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/wireless/marvell/mwifiex/main.c b/drivers/net/wireless/marvell/mwifiex/main.c
index d14e55e3c9dad..5894566ec4805 100644
--- a/drivers/net/wireless/marvell/mwifiex/main.c
+++ b/drivers/net/wireless/marvell/mwifiex/main.c
@@ -1469,6 +1469,8 @@ int mwifiex_shutdown_sw(struct mwifiex_adapter *adapter)
 	priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
 	mwifiex_deauthenticate(priv, NULL);
 
+	mwifiex_init_shutdown_fw(priv, MWIFIEX_FUNC_SHUTDOWN);
+
 	mwifiex_uninit_sw(adapter);
 	adapter->is_up = false;
 
-- 
2.27.0




  parent reply	other threads:[~2020-12-28 13:43 UTC|newest]

Thread overview: 466+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-28 12:43 [PATCH 5.4 000/453] 5.4.86-rc1 review Greg Kroah-Hartman
2020-12-28 12:43 ` [PATCH 5.4 001/453] ARM: dts: sun7i: bananapi: Enable RGMII RX/TX delay on Ethernet PHY Greg Kroah-Hartman
2020-12-28 12:43 ` [PATCH 5.4 002/453] ARM: dts: sun8i: r40: bananapi-m2-berry: Fix dcdc1 regulator Greg Kroah-Hartman
2020-12-28 12:43 ` [PATCH 5.4 003/453] ARM: dts: sun8i: v40: bananapi-m2-berry: Fix ethernet node Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 004/453] pinctrl: merrifield: Set default bias in case no particular value given Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 005/453] pinctrl: baytrail: Avoid clearing debounce value when turning it off Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 006/453] ARM: dts: sun8i: v3s: fix GIC node memory range Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 007/453] ARM: dts: sun7i: pcduino3-nano: enable RGMII RX/TX delay on PHY Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 008/453] ARM: dts: imx6qdl-wandboard-revd1: Remove PAD_GPIO_6 from enetgrp Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 009/453] ARM: dts: imx6qdl-kontron-samx6i: fix I2C_PM scl pin Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 010/453] PM: runtime: Add pm_runtime_resume_and_get to deal with usage counter Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 011/453] gpio: zynq: fix reference leak in zynq_gpio functions Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 012/453] gpio: mvebu: fix potential user-after-free on probe Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 013/453] scsi: bnx2i: Requires MMU Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 014/453] xsk: Fix xsk_poll()s return type Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 015/453] xsk: Replace datagram_poll by sock_poll_wait Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 016/453] can: softing: softing_netdev_open(): fix error handling Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 017/453] clk: renesas: r9a06g032: Drop __packed for portability Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 018/453] block: Simplify REQ_OP_ZONE_RESET_ALL handling Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 019/453] block: factor out requeue handling from dispatch code Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 020/453] blk-mq: In blk_mq_dispatch_rq_list() "no budget" is a reason to kick Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 021/453] pinctrl: aspeed: Fix GPIO requests on pass-through banks Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 022/453] netfilter: x_tables: Switch synchronization to RCU Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 023/453] netfilter: nft_compat: make sure xtables destructors have run Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 024/453] netfilter: nft_dynset: fix timeouts later than 23 days Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 025/453] afs: Fix memory leak when mounting with multiple source parameters Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 026/453] Revert "gpio: eic-sprd: Use devm_platform_ioremap_resource()" Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 027/453] gpio: eic-sprd: break loop when getting NULL device resource Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 028/453] netfilter: nft_ct: Remove confirmation check for NFT_CT_ID Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 029/453] selftests/bpf/test_offload.py: Reset ethtool features after failed setting Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 030/453] RDMA/cm: Fix an attempt to use non-valid pointer when cleaning timewait Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 031/453] i40e: Refactor rx_bi accesses Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 032/453] i40e: optimise prefetch page refcount Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 033/453] i40e: avoid premature Rx buffer reuse Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 034/453] ixgbe: " Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 035/453] selftests: fix poll error in udpgro.sh Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 036/453] net: mvpp2: add mvpp2_phylink_to_port() helper Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 037/453] drm/tegra: replace idr_init() by idr_init_base() Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 038/453] kernel/cpu: add arch override for clear_tasks_mm_cpumask() mm handling Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 039/453] drm/tegra: sor: Disable clocks on error in tegra_sor_init() Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 040/453] habanalabs: put devices before driver removal Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 041/453] arm64: syscall: exit userspace before unmasking exceptions Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 042/453] vxlan: Add needed_headroom for lower device Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 043/453] vxlan: Copy needed_tailroom from lowerdev Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 044/453] scsi: mpt3sas: Increase IOCInit request timeout to 30s Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 045/453] dm table: Remove BUG_ON(in_interrupt()) Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 046/453] iwlwifi: pcie: add one missing entry for AX210 Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 047/453] drm/amd/display: Init clock value by current vbios CLKs Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 048/453] perf/x86/intel: Check PEBS status correctly Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 049/453] kbuild: avoid split lines in .mod files Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 050/453] soc/tegra: fuse: Fix index bug in get_process_id Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 051/453] usb: mtu3: fix memory corruption in mtu3_debugfs_regset() Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 052/453] USB: serial: option: add interface-number sanity check to flag handling Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 053/453] USB: gadget: f_acm: add support for SuperSpeed Plus Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 054/453] USB: gadget: f_midi: setup SuperSpeed Plus descriptors Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 055/453] usb: gadget: f_fs: Re-use SS descriptors for SuperSpeedPlus Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 056/453] USB: gadget: f_rndis: fix bitrate for SuperSpeed and above Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 057/453] usb: chipidea: ci_hdrc_imx: Pass DISABLE_DEVICE_STREAMING flag to imx6ul Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 058/453] ARM: dts: exynos: fix roles of USB 3.0 ports on Odroid XU Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 059/453] ARM: dts: exynos: fix USB 3.0 VBUS control and over-current pins on Exynos5410 Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 060/453] ARM: dts: exynos: fix USB 3.0 pins supply being turned off on Odroid XU Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 061/453] coresight: tmc-etf: Fix NULL ptr dereference in tmc_enable_etf_sink_perf() Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 062/453] coresight: tmc-etr: Check if page is valid before dma_map_page() Greg Kroah-Hartman
2020-12-28 12:44 ` [PATCH 5.4 063/453] coresight: tmc-etr: Fix barrier packet insertion for perf buffer Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 064/453] coresight: etb10: Fix possible NULL ptr dereference in etb_enable_perf() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 065/453] scsi: megaraid_sas: Check user-provided offsets Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 066/453] HID: i2c-hid: add Vero K147 to descriptor override Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 067/453] serial_core: Check for port state when tty is in error state Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 068/453] Bluetooth: Fix slab-out-of-bounds read in hci_le_direct_adv_report_evt() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 069/453] quota: Sanity-check quota file headers on load Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 070/453] media: msi2500: assign SPI bus number dynamically Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 071/453] crypto: af_alg - avoid undefined behavior accessing salg_name Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 072/453] md: fix a warning caused by a race between concurrent md_ioctl()s Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 073/453] drm/gma500: fix double free of gma_connector Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 074/453] drm/aspeed: Fix Kconfig warning & subsequent build errors Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 075/453] drm/mcde: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 076/453] drm/tve200: " Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 077/453] arm64: dts: renesas: hihope-rzg2-ex: Drop rxc-skew-ps from ethernet-phy node Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 078/453] arm64: dts: renesas: cat875: Remove " Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 079/453] soc: renesas: rmobile-sysc: Fix some leaks in rmobile_init_pm_domains() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 080/453] soc: mediatek: Check if power domains can be powered on at boot time Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 081/453] soc: qcom: geni: More properly switch to DMA mode Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 082/453] Revert "i2c: i2c-qcom-geni: Fix DMA transfer race" Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 083/453] RDMA/bnxt_re: Set queue pair state when being queried Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 084/453] rtc: pcf2127: fix pcf2127_nvmem_read/write() returns Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 085/453] selinux: fix error initialization in inode_doinit_with_dentry() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 086/453] ARM: dts: aspeed: s2600wf: Fix VGA memory region location Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 087/453] RDMA/rxe: Compute PSN windows correctly Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 088/453] x86/mm/ident_map: Check for errors from ident_pud_init() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 089/453] ARM: p2v: fix handling of LPAE translation in BE mode Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 090/453] x86/apic: Fix x2apic enablement without interrupt remapping Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 091/453] sched/deadline: Fix sched_dl_global_validate() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 092/453] sched: Reenable interrupts in do_sched_yield() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 093/453] drm/amdgpu: fix incorrect enum type Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 094/453] crypto: talitos - Endianess in current_desc_hdr() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 095/453] crypto: talitos - Fix return type of current_desc_hdr() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 096/453] crypto: inside-secure - Fix sizeof() mismatch Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 097/453] ASoC: sun4i-i2s: Fix lrck_period computation for I2S justified mode Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 098/453] ARM: dts: aspeed: tiogapass: Remove vuart Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 099/453] drm/amdgpu: fix build_coefficients() argument Greg Kroah-Hartman
2020-12-29 17:58   ` Pavel Machek
2020-12-30  9:22     ` Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 100/453] powerpc/64: Set up a kernel stack for secondaries before cpu_restore() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 101/453] spi: img-spfi: fix reference leak in img_spfi_resume Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 102/453] f2fs: call f2fs_get_meta_page_retry for nat page Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 103/453] drm/msm/dsi_pll_10nm: restore VCO rate during restore_state Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 104/453] spi: spi-mem: fix reference leak in spi_mem_access_start Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 105/453] ASoC: pcm: DRAIN support reactivation Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 106/453] libbpf: Fix BTF data layout checks and allow empty BTF Greg Kroah-Hartman
2020-12-28 15:49   ` Naresh Kamboju
2020-12-28 19:47     ` Andrii Nakryiko
2020-12-28 23:09       ` Sasha Levin
2020-12-29  9:44         ` Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 107/453] selinux: fix inode_doinit_with_dentry() LABEL_INVALID error handling Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 108/453] spi: stm32: fix reference leak in stm32_spi_resume Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 109/453] brcmfmac: Fix memory leak for unpaired brcmf_{alloc/free} Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 110/453] arm64: dts: exynos: Include common syscon restart/poweroff for Exynos7 Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 111/453] arm64: dts: exynos: Correct psci compatible used on Exynos7 Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 112/453] Bluetooth: Fix null pointer dereference in hci_event_packet() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 113/453] Bluetooth: hci_h5: fix memory leak in h5_close Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 114/453] spi: spi-ti-qspi: fix reference leak in ti_qspi_setup Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 115/453] spi: mt7621: fix missing clk_disable_unprepare() on error in mt7621_spi_probe Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 116/453] spi: tegra20-slink: fix reference leak in slink ops of tegra20 Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 117/453] spi: tegra20-sflash: fix reference leak in tegra_sflash_resume Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 118/453] spi: tegra114: fix reference leak in tegra spi ops Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 119/453] spi: bcm63xx-hsspi: fix missing clk_disable_unprepare() on error in bcm63xx_hsspi_resume Greg Kroah-Hartman
2020-12-28 12:45 ` Greg Kroah-Hartman [this message]
2020-12-28 12:45 ` [PATCH 5.4 121/453] selftest/bpf: Add missed ip6ip6 test back Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 122/453] ASoC: wm8998: Fix PM disable depth imbalance on error Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 5.4 123/453] spi: sprd: fix reference leak in sprd_spi_remove Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 124/453] net: evaluate net.ipvX.conf.all.ignore_routes_with_linkdown Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 125/453] net: evaluate net.ipv4.conf.all.proxy_arp_pvlan Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 126/453] ASoC: arizona: Fix a wrong free in wm8997_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 127/453] RDMa/mthca: Work around -Wenum-conversion warning Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 128/453] MIPS: BCM47XX: fix kconfig dependency bug for BCM47XX_BCMA Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 129/453] crypto: qat - fix status check in qat_hal_put_rel_rd_xfer() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 130/453] staging: greybus: codecs: Fix reference counter leak in error handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 131/453] staging: gasket: interrupt: fix the missed eventfd_ctx_put() in gasket_interrupt.c Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 132/453] media: tm6000: Fix sizeof() mismatches Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 133/453] media: mtk-vcodec: add missing put_device() call in mtk_vcodec_init_dec_pm() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 134/453] media: mtk-vcodec: add missing put_device() call in mtk_vcodec_release_dec_pm() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 135/453] media: mtk-vcodec: add missing put_device() call in mtk_vcodec_init_enc_pm() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 136/453] media: v4l2-fwnode: Return -EINVAL for invalid bus-type Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 137/453] ASoC: meson: fix COMPILE_TEST error Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 138/453] scsi: core: Fix VPD LUN ID designator priorities Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 139/453] media: solo6x10: fix missing snd_card_free in error handling case Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 140/453] video: fbdev: atmel_lcdfb: fix return error code in atmel_lcdfb_of_init() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 141/453] drm/omap: dmm_tiler: fix return error code in omap_dmm_probe() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 142/453] Input: ads7846 - fix race that causes missing releases Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 143/453] Input: ads7846 - fix integer overflow on Rt calculation Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 144/453] Input: ads7846 - fix unaligned access on 7845 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 145/453] usb/max3421: fix return error code in max3421_probe() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 146/453] spi: mxs: fix reference leak in mxs_spi_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 147/453] selftests/bpf: Fix broken riscv build Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 148/453] powerpc: Avoid broken GCC __attribute__((optimize)) Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 149/453] powerpc/feature: Fix CPU_FTRS_ALWAYS by removing CPU_FTRS_GENERIC_32 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 150/453] EDAC/mce_amd: Use struct cpuinfo_x86.cpu_die_id for AMD NodeId Greg Kroah-Hartman
2020-12-28 15:54   ` Borislav Petkov
2020-12-28 23:21     ` Sasha Levin
2020-12-28 12:46 ` [PATCH 5.4 151/453] crypto: crypto4xx - Replace bitwise OR with logical OR in crypto4xx_build_pd Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 152/453] crypto: omap-aes - Fix PM disable depth imbalance in omap_aes_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 153/453] spi: fix resource leak for drivers without .remove callback Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 154/453] soc: ti: knav_qmss: fix reference leak in knav_queue_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 155/453] soc: ti: Fix reference imbalance in knav_dma_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 156/453] drivers: soc: ti: knav_qmss_queue: Fix error return code in knav_queue_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 157/453] Input: omap4-keypad - fix runtime PM error handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 158/453] clk: meson: Kconfig: fix dependency for G12A Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 159/453] RDMA/cxgb4: Validate the number of CQEs Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 160/453] memstick: fix a double-free bug in memstick_check Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 161/453] ARM: dts: at91: sama5d4_xplained: add pincontrol for USB Host Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 162/453] ARM: dts: at91: sama5d3_xplained: " Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 163/453] mmc: pxamci: Fix error return code in pxamci_probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 164/453] orinoco: Move context allocation after processing the skb Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 165/453] qtnfmac: fix error return code in qtnf_pcie_probe() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 166/453] rsi: fix error return code in rsi_reset_card() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 167/453] cw1200: fix missing destroy_workqueue() on error in cw1200_init_common Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 168/453] dmaengine: mv_xor_v2: Fix error return code in mv_xor_v2_probe() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 169/453] leds: netxbig: add missing put_device() call in netxbig_leds_get_of_pdata() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 170/453] arm64: tegra: Fix DT binding for IO High Voltage entry Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 171/453] media: siano: fix memory leak of debugfs members in smsdvb_hotplug Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 172/453] platform/x86: mlx-platform: Remove PSU EEPROM from default platform configuration Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 173/453] platform/x86: mlx-platform: Remove PSU EEPROM from MSN274x " Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 174/453] samples: bpf: Fix lwt_len_hist reusing previous BPF map Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 175/453] media: imx214: Fix stop streaming Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 176/453] mips: cdmm: fix use-after-free in mips_cdmm_bus_discover Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 177/453] media: max2175: fix max2175_set_csm_mode() error code Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 178/453] slimbus: qcom-ngd-ctrl: Avoid sending power requests without QMI Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 179/453] HSI: omap_ssi: Dont jump to free ID in ssi_add_controller() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 180/453] ARM: dts: Remove non-existent i2c1 from 98dx3236 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 181/453] arm64: dts: armada-3720-turris-mox: update ethernet-phy handle name Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 182/453] arm64: dts: rockchip: Set dr_mode to "host" for OTG on rk3328-roc-cc Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 5.4 183/453] power: supply: axp288_charger: Fix HP Pavilion x2 10 DMI matching Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 184/453] power: supply: bq24190_charger: fix reference leak Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 185/453] genirq/irqdomain: Dont try to free an interrupt that has no mapping Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 186/453] arm64: dts: ls1028a: fix ENETC PTP clock input Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 187/453] arm64: dts: qcom: c630: Polish i2c-hid devices Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 188/453] PCI: Bounds-check command-line resource alignment requests Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 189/453] PCI: Fix overflow in " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 190/453] PCI: iproc: Fix out-of-bound array accesses Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 191/453] arm64: dts: meson: fix spi-max-frequency on Khadas VIM2 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 192/453] arm64: dts: meson-sm1: fix typo in opp table Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 193/453] soc: amlogic: canvas: add missing put_device() call in meson_canvas_get() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 194/453] ARM: dts: at91: at91sam9rl: fix ADC triggers Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 195/453] platform/x86: dell-smbios-base: Fix error return code in dell_smbios_init Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 196/453] ath10k: Fix the parsing error in service available event Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 197/453] ath10k: Fix an error handling path Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 198/453] ath10k: Release some resources in " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 199/453] SUNRPC: rpc_wake_up() should wake up tasks in the correct order Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 200/453] NFSv4.2: condition READDIRs mask for security label based on LSM state Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 201/453] SUNRPC: xprt_load_transport() needs to support the netid "rdma6" Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 202/453] NFSv4: Fix the alignment of page data in the getdeviceinfo reply Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 203/453] net: sunrpc: Fix snprintf return value check in do_xprt_debugfs Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 204/453] lockd: dont use interval-based rebinding over TCP Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 205/453] NFS: switch nfsiod to be an UNBOUND workqueue Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 206/453] selftests/seccomp: Update kernel config Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 207/453] vfio-pci: Use io_remap_pfn_range() for PCI IO memory Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 208/453] hwmon: (ina3221) Fix PM usage counter unbalance in ina3221_write_enable Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 209/453] media: saa7146: fix array overflow in vidioc_s_audio() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 210/453] powerpc/perf: Fix crash with is_sier_available when pmu is not set Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 211/453] powerpc/64: Fix an EMIT_BUG_ENTRY in head_64.S Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 212/453] clocksource/drivers/orion: Add missing clk_disable_unprepare() on error path Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 213/453] clocksource/drivers/cadence_ttc: Fix memory leak in ttc_setup_clockevent() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 214/453] iio: hrtimer-trigger: Mark hrtimer to expire in hard interrupt context Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 215/453] ARM: dts: at91: sama5d2: map securam as device Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 216/453] bpf: Fix bpf_put_raw_tracepoint()s use of __module_address() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 217/453] pinctrl: falcon: add missing put_device() call in pinctrl_falcon_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 218/453] arm64: dts: rockchip: Fix UART pull-ups on rk3328 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 219/453] memstick: r592: Fix error return in r592_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 220/453] MIPS: Dont round up kernel sections size for memblock_add() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 221/453] net/mlx5: Properly convey driver version to firmware Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 222/453] ASoC: jz4740-i2s: add missed checks for clk_get() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 223/453] dm ioctl: fix error return code in target_message Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 224/453] phy: renesas: rcar-gen3-usb2: disable runtime pm in case of failure Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 225/453] clocksource/drivers/arm_arch_timer: Use stable count reader in erratum sne Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 226/453] clocksource/drivers/arm_arch_timer: Correct fault programming of CNTKCTL_EL1.EVNTI Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 227/453] cpufreq: ap806: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 228/453] cpufreq: highbank: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 229/453] cpufreq: mediatek: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 230/453] cpufreq: qcom: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 231/453] cpufreq: st: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 232/453] cpufreq: sun50i: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 233/453] cpufreq: loongson1: Add missing MODULE_ALIAS Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 234/453] cpufreq: scpi: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 235/453] Bluetooth: btusb: Add the missed release_firmware() in btusb_mtk_setup_firmware() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 236/453] Bluetooth: btmtksdio: Add the missed release_firmware() in mtk_setup_firmware() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 237/453] arm64: dts: meson: fix PHY deassert timing requirements Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 238/453] ARM: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 239/453] arm64: dts: meson: g12a: x96-max: " Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 240/453] scsi: qedi: Fix missing destroy_workqueue() on error in __qedi_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 241/453] scsi: pm80xx: Fix error return in pm8001_pci_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 242/453] seq_buf: Avoid type mismatch for seq_buf_init Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 5.4 243/453] scsi: fnic: Fix error return code in fnic_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 244/453] platform/x86: mlx-platform: Fix item counter assignment for MSN2700, MSN24xx systems Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 245/453] powerpc/pseries/hibernation: drop pseries_suspend_begin() from suspend ops Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 246/453] powerpc/pseries/hibernation: remove redundant cacheinfo update Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 247/453] drm/mediatek: avoid dereferencing a null hdmi_phy on an error message Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 248/453] ASoC: amd: change clk_get() to devm_clk_get() and add missed checks Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 249/453] powerpc/mm: sanity_check_fault() should work for all, not only BOOK3S Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 250/453] usb: ehci-omap: Fix PM disable depth umbalance in ehci_hcd_omap_probe Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 251/453] usb: oxu210hp-hcd: Fix memory leak in oxu_create Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 252/453] speakup: fix uninitialized flush_lock Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 253/453] nfsd: Fix message level for normal termination Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 254/453] nfs_common: need lock during iterate through the list Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 255/453] x86/kprobes: Restore BTF if the single-stepping is cancelled Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 256/453] platform/chrome: cros_ec_spi: Dont overwrite spi::mode Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 257/453] bus: fsl-mc: fix error return code in fsl_mc_object_allocate() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 258/453] s390/cio: fix use-after-free in ccw_device_destroy_console Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 259/453] iwlwifi: mvm: hook up missing RX handlers Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 260/453] erofs: avoid using generic_block_bmap Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 261/453] can: m_can: m_can_config_endisable(): remove double clearing of clock stop request bit Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 262/453] RDMA/core: Do not indicate device ready when device enablement fails Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 263/453] remoteproc: q6v5-mss: fix error handling in q6v5_pds_enable Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 264/453] remoteproc: qcom: fix reference leak in adsp_start Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 265/453] remoteproc: qcom: Fix potential NULL dereference in adsp_init_mmio() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 266/453] clk: tegra: Fix duplicated SE clock entry Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 267/453] mtd: rawnand: gpmi: fix reference count leak in gpmi ops Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 268/453] mtd: rawnand: meson: Fix a resource leak in init Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 269/453] mtd: rawnand: gpmi: Fix the random DMA timeout issue Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 270/453] extcon: max77693: Fix modalias string Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 271/453] crypto: atmel-i2c - select CONFIG_BITREVERSE Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 272/453] mac80211: dont set set TDLS STA bandwidth wider than possible Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 273/453] ASoC: wm_adsp: remove "ctl" from list on error in wm_adsp_create_control() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 274/453] irqchip/alpine-msi: Fix freeing of interrupts on allocation error path Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 275/453] watchdog: armada_37xx: Add missing dependency on HAS_IOMEM Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 276/453] watchdog: sirfsoc: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 277/453] watchdog: sprd: remove watchdog disable from resume fail path Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 278/453] watchdog: sprd: check busy bit before new loading rather than after that Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 279/453] watchdog: Fix potential dereferencing of null pointer Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 280/453] ubifs: Fix error return code in ubifs_init_authentication() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 281/453] um: Monitor error events in IRQ controller Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 282/453] um: tty: Fix handling of close in tty lines Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 283/453] um: chan_xterm: Fix fd leak Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 284/453] sunrpc: fix xs_read_xdr_buf for partial pages receive Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 285/453] RDMA/cma: Dont overwrite sgid_attr after device is released Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 286/453] nfc: s3fwrn5: Release the nfc firmware Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 287/453] powerpc/ps3: use dma_mapping_error() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 288/453] sparc: fix handling of page table constructor failure Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 289/453] mm: dont wake kswapd prematurely when watermark boosting is disabled Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 290/453] checkpatch: fix unescaped left brace Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 291/453] lan743x: fix rx_napi_poll/interrupt ping-pong Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 292/453] net: bcmgenet: Fix a resource leak in an error handling path in the probe functin Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 293/453] net: allwinner: Fix some resources leak in the error handling path of the probe and in the remove function Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 294/453] net: korina: fix return value Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 295/453] libnvdimm/label: Return -ENXIO for no slot in __blk_label_update Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 296/453] watchdog: qcom: Avoid context switch in restart handler Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 297/453] watchdog: coh901327: add COMMON_CLK dependency Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 298/453] clk: ti: Fix memleak in ti_fapll_synth_setup Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 299/453] pwm: zx: Add missing cleanup in error path Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 301/453] perf record: Fix memory leak when using --user-regs=? to list registers Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 302/453] qlcnic: Fix error code in probe Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 5.4 303/453] virtio_ring: Cut and paste bugs in vring_create_virtqueue_packed() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 304/453] virtio_net: Fix error code in probe() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 305/453] virtio_ring: Fix two use after free bugs Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 306/453] clk: at91: sam9x60: remove atmel,osc-bypass support Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 307/453] clk: s2mps11: Fix a resource leak in error handling paths in the probe function Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 308/453] clk: sunxi-ng: Make sure divider tables have sentinel Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 309/453] kconfig: fix return value of do_error_if() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 310/453] perf probe: Fix memory leak when synthesizing SDT probes Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 311/453] ARM: sunxi: Add machine match for the Allwinner V3 SoC Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 312/453] cfg80211: initialize rekey_data Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 313/453] [SECURITY] fix namespaced fscaps when !CONFIG_SECURITY Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 314/453] lwt: Disable BH too in run_lwt_bpf() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 315/453] drm/amd/display: Prevent bandwidth overflow Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 316/453] drm/amdkfd: Fix leak in dmabuf import Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 317/453] Input: cros_ec_keyb - send scancodes in addition to key events Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 318/453] initramfs: fix clang build failure Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 319/453] Input: goodix - add upside-down quirk for Teclast X98 Pro tablet Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 320/453] vfio/pci/nvlink2: Do not attempt NPU2 setup on POWER8NVL NPU Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 321/453] media: gspca: Fix memory leak in probe Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 322/453] media: sunxi-cir: ensure IR is handled when it is continuous Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 323/453] media: netup_unidvb: Dont leak SPI master in probe error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 324/453] media: ipu3-cio2: Remove traces of returned buffers Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 325/453] media: ipu3-cio2: Return actual subdev format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 326/453] media: ipu3-cio2: Serialise access to pad format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 327/453] media: ipu3-cio2: Validate mbus format in setting subdev format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 328/453] media: ipu3-cio2: Make the field on subdev format V4L2_FIELD_NONE Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 329/453] Input: cyapa_gen6 - fix out-of-bounds stack access Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 330/453] ALSA: hda/ca0132 - Change Input Source enum strings Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 331/453] PM: ACPI: PCI: Drop acpi_pm_set_bridge_wakeup() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 332/453] Revert "ACPI / resources: Use AE_CTRL_TERMINATE to terminate resources walks" Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 333/453] ACPI: PNP: compare the string length in the matching_id() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 334/453] ALSA: hda: Fix regressions on clear and reconfig sysfs Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 335/453] ALSA: hda/ca0132 - Fix AE-5 rear headphone pincfg Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 336/453] ALSA: hda/realtek: make bass spk volume adjustable on a yoga laptop Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 337/453] ALSA: hda/realtek - Enable headset mic of ASUS X430UN with ALC256 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 338/453] ALSA: hda/realtek - Enable headset mic of ASUS Q524UQK with ALC255 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 339/453] ALSA: hda/realtek - Add supported for more Lenovo ALC285 Headset Button Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 340/453] ALSA: pcm: oss: Fix a few more UBSAN fixes Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 341/453] ALSA/hda: apply jack fixup for the Acer Veriton N4640G/N6640G/N2510G Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 342/453] ALSA: hda/realtek: Add quirk for MSI-GP73 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 343/453] ALSA: hda/realtek: Apply jack fixup for Quanta NL3 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 344/453] ALSA: usb-audio: Add VID to support native DSD reproduction on FiiO devices Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 345/453] ALSA: usb-audio: Disable sample read check if firmware doesnt give back Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 346/453] ALSA: core: memalloc: add page alignment for iram Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 347/453] s390/smp: perform initial CPU reset also for SMT siblings Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 348/453] s390/kexec_file: fix diag308 subcode when loading crash kernel Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 349/453] s390/dasd: fix hanging device offline processing Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 350/453] s390/dasd: prevent inconsistent LCU device data Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 351/453] s390/dasd: fix list corruption of pavgroup group list Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 352/453] s390/dasd: fix list corruption of lcu list Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 353/453] binder: add flag to clear buffer on txn complete Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 354/453] ASoC: cx2072x: Fix doubly definitions of Playback and Capture streams Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 355/453] staging: comedi: mf6x4: Fix AI end-of-conversion detection Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 356/453] perf/x86/intel: Add event constraint for CYCLE_ACTIVITY.STALLS_MEM_ANY Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 357/453] perf/x86/intel: Fix rtm_abort_event encoding on Ice Lake Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 358/453] powerpc/perf: Exclude kernel samples while counting events in user space Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 359/453] crypto: ecdh - avoid unaligned accesses in ecdh_set_secret() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 360/453] crypto: arm/aes-ce - work around Cortex-A57/A72 silion errata Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 361/453] EDAC/i10nm: Use readl() to access MMIO registers Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 362/453] EDAC/amd64: Fix PCI component registration Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 5.4 363/453] cpuset: fix race between hotplug work and later CPU offline Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 364/453] USB: serial: mos7720: fix parallel-port state restore Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 365/453] USB: serial: digi_acceleport: fix write-wakeup deadlocks Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 366/453] USB: serial: keyspan_pda: fix dropped unthrottle interrupts Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 367/453] USB: serial: keyspan_pda: fix write deadlock Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 368/453] USB: serial: keyspan_pda: fix stalled writes Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 369/453] USB: serial: keyspan_pda: fix write-wakeup use-after-free Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 370/453] USB: serial: keyspan_pda: fix tx-unthrottle use-after-free Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 371/453] USB: serial: keyspan_pda: fix write unthrottling Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 372/453] btrfs: do not shorten unpin len for caching block groups Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 373/453] btrfs: trim: fix underflow in trim length to prevent access beyond device boundary Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 374/453] ext4: fix a memory leak of ext4_free_data Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 375/453] ext4: fix deadlock with fs freezing and EA inodes Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 376/453] KVM: arm64: Introduce handling of AArch32 TTBCR2 traps Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 377/453] ARM: dts: pandaboard: fix pinmux for gpio user button of Pandaboard ES Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 378/453] ARM: dts: at91: sama5d2: fix CAN message ram offset and size Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 379/453] xprtrdma: Fix XDRBUF_SPARSE_PAGES support Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 380/453] powerpc: Fix incorrect stw{, ux, u, x} instructions in __set_pte_at Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 381/453] powerpc/rtas: Fix typo of ibm,open-errinjct in RTAS filter Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 382/453] powerpc/feature: Add CPU_FTR_NOEXECUTE to G2_LE Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 383/453] powerpc/xmon: Change printk() to pr_cont() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 384/453] powerpc/8xx: Fix early debug when SMC1 is relocated Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 385/453] powerpc/mm: Fix verification of MMU_FTR_TYPE_44x Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 386/453] powerpc/powernv/npu: Do not attempt NPU2 setup on POWER8NVL NPU Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 387/453] powerpc/powernv/memtrace: Dont leak kernel memory to user space Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 388/453] powerpc/powernv/memtrace: Fix crashing the kernel when enabling concurrently Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 389/453] ima: Dont modify file descriptor mode on the fly Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 390/453] um: Remove use of asprinf in umid.c Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 391/453] ceph: fix race in concurrent __ceph_remove_cap invocations Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 392/453] SMB3: avoid confusing warning message on mount to Azure Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 393/453] ubifs: wbuf: Dont leak kernel memory to flash Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 394/453] jffs2: Fix GC exit abnormally Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 395/453] jffs2: Fix ignoring mounting options problem during remounting Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 396/453] jfs: Fix array index bounds check in dbAdjTree Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 397/453] drm/amd/display: Honor the offset for plane 0 Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 398/453] drm/amd/display: Fix memory leaks in S3 resume Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 399/453] drm/dp_aux_dev: check aux_dev before use in drm_dp_aux_dev_get_by_minor() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 400/453] drm/i915: Fix mismatch between misplaced vma check and vma insert Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 401/453] spi: pxa2xx: Fix use-after-free on unbind Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 402/453] spi: spi-sh: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 403/453] spi: atmel-quadspi: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 404/453] spi: davinci: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 405/453] spi: fsl: fix use of spisel_boot signal on MPC8309 Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 406/453] spi: gpio: Dont leak SPI master in probe error path Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 407/453] spi: mxic: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 408/453] spi: pic32: Dont leak DMA channels " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 409/453] spi: rb4xx: Dont leak SPI master " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 410/453] spi: sc18is602: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 411/453] spi: st-ssc4: Fix unbalanced pm_runtime_disable() " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 412/453] spi: synquacer: Disable clock " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 413/453] spi: mt7621: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 414/453] spi: mt7621: Dont leak SPI master " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 415/453] spi: atmel-quadspi: Disable clock " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 416/453] spi: atmel-quadspi: Fix AHB memory accesses Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 417/453] soc: qcom: smp2p: Safely acquire spinlock without IRQs Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 418/453] mtd: spinand: Fix OOB read Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 419/453] mtd: parser: cmdline: Fix parsing of part-names with colons Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 420/453] mtd: rawnand: qcom: Fix DMA sync on FLASH_STATUS register read Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 421/453] mtd: rawnand: meson: fix meson_nfc_dma_buffer_release() arguments Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 422/453] scsi: qla2xxx: Fix crash during driver load on big endian machines Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 5.4 423/453] scsi: lpfc: Fix invalid sleeping context in lpfc_sli4_nvmet_alloc() Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 424/453] scsi: lpfc: Re-fix use after free in lpfc_rq_buf_free() Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 425/453] iio: buffer: Fix demux update Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 426/453] iio: adc: rockchip_saradc: fix missing clk_disable_unprepare() on error in rockchip_saradc_resume Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 427/453] iio:light:rpr0521: Fix timestamp alignment and prevent data leak Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 428/453] iio:light:st_uvis25: " Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 429/453] iio:magnetometer:mag3110: Fix alignment and data leak issues Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 430/453] iio:pressure:mpl3115: Force alignment of buffer Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 431/453] iio:imu:bmi160: Fix too large a buffer Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 432/453] iio:adc:ti-ads124s08: Fix buffer being too long Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 433/453] iio:adc:ti-ads124s08: Fix alignment and data leak issues Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 434/453] md/cluster: block reshape with remote resync job Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 435/453] md/cluster: fix deadlock when node is doing " Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 436/453] pinctrl: sunxi: Always call chained_irq_{enter, exit} in sunxi_pinctrl_irq_handler Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 437/453] clk: ingenic: Fix divider calculation with div tables Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 438/453] clk: mvebu: a3700: fix the XTAL MODE pin to MPP1_9 Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 439/453] clk: tegra: Do not return 0 on failure Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 440/453] device-dax/core: Fix memory leak when rmmod dax.ko Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 441/453] dma-buf/dma-resv: Respect num_fences when initializing the shared fence list Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 442/453] xen-blkback: set ring->xenblkd to NULL after kthread_stop() Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 443/453] xen/xenbus: Allow watches discard events before queueing Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 444/453] xen/xenbus: Add will_handle callback support in xenbus_watch_path() Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 445/453] xen/xenbus/xen_bus_type: Support will_handle watch callback Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 446/453] xen/xenbus: Count pending messages for each watch Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 447/453] xenbus/xenbus_backend: Disallow pending watch messages Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 448/453] libnvdimm/namespace: Fix reaping of invalidated block-window-namespace labels Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 449/453] platform/x86: intel-vbtn: Allow switch events on Acer Switch Alpha 12 Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 450/453] PCI: Fix pci_slot_release() NULL pointer dereference Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 451/453] regulator: axp20x: Fix DLDO2 voltage control register mask for AXP22x Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 452/453] rtc: ep93xx: Fix NULL pointer dereference in ep93xx_rtc_read_time Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 5.4 453/453] Revert: "ring-buffer: Remove HAVE_64BIT_ALIGNED_ACCESS" Greg Kroah-Hartman
2020-12-28 16:57 ` [PATCH 5.4 000/453] 5.4.86-rc1 review Naresh Kamboju
2020-12-28 17:33 ` Guenter Roeck
2020-12-29  9:46   ` Greg Kroah-Hartman
2020-12-28 20:18 ` Jon Hunter
2020-12-28 20:26 ` Guenter Roeck

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=20201228124942.989189991@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=kitakar@gmail.com \
    --cc=kvalo@codeaurora.org \
    --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).