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,
	Serge Semin <Sergey.Semin@baikalelectronics.ru>,
	Vinod Koul <vkoul@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 397/408] dmaengine: dw: Add DMA-channels mask cell support
Date: Tue, 27 Oct 2020 14:55:35 +0100	[thread overview]
Message-ID: <20201027135513.413483027@linuxfoundation.org> (raw)
In-Reply-To: <20201027135455.027547757@linuxfoundation.org>

From: Serge Semin <Sergey.Semin@baikalelectronics.ru>

[ Upstream commit e8ee6c8cb61b676f1a2d6b942329e98224bd8ee9 ]

DW DMA IP-core provides a way to synthesize the DMA controller with
channels having different parameters like maximum burst-length,
multi-block support, maximum data width, etc. Those parameters both
explicitly and implicitly affect the channels performance. Since DMA slave
devices might be very demanding to the DMA performance, let's provide a
functionality for the slaves to be assigned with DW DMA channels, which
performance according to the platform engineer fulfill their requirements.
After this patch is applied it can be done by passing the mask of suitable
DMA-channels either directly in the dw_dma_slave structure instance or as
a fifth cell of the DMA DT-property. If mask is zero or not provided, then
there is no limitation on the channels allocation.

For instance Baikal-T1 SoC is equipped with a DW DMAC engine, which first
two channels are synthesized with max burst length of 16, while the rest
of the channels have been created with max-burst-len=4. It would seem that
the first two channels must be faster than the others and should be more
preferable for the time-critical DMA slave devices. In practice it turned
out that the situation is quite the opposite. The channels with
max-burst-len=4 demonstrated a better performance than the channels with
max-burst-len=16 even when they both had been initialized with the same
settings. The performance drop of the first two DMA-channels made them
unsuitable for the DW APB SSI slave device. No matter what settings they
are configured with, full-duplex SPI transfers occasionally experience the
Rx FIFO overflow. It means that the DMA-engine doesn't keep up with
incoming data pace even though the SPI-bus is enabled with speed of 25MHz
while the DW DMA controller is clocked with 50MHz signal. There is no such
problem has been noticed for the channels synthesized with
max-burst-len=4.

Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Link: https://lore.kernel.org/r/20200731200826.9292-6-Sergey.Semin@baikalelectronics.ru
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/dma/dw/core.c                | 4 ++++
 drivers/dma/dw/of.c                  | 7 +++++--
 include/linux/platform_data/dma-dw.h | 2 ++
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/drivers/dma/dw/core.c b/drivers/dma/dw/core.c
index a1b56f52db2f2..5e7fdc0b6e3db 100644
--- a/drivers/dma/dw/core.c
+++ b/drivers/dma/dw/core.c
@@ -772,6 +772,10 @@ bool dw_dma_filter(struct dma_chan *chan, void *param)
 	if (dws->dma_dev != chan->device->dev)
 		return false;
 
+	/* permit channels in accordance with the channels mask */
+	if (dws->channels && !(dws->channels & dwc->mask))
+		return false;
+
 	/* We have to copy data since dws can be temporary storage */
 	memcpy(&dwc->dws, dws, sizeof(struct dw_dma_slave));
 
diff --git a/drivers/dma/dw/of.c b/drivers/dma/dw/of.c
index 9e27831dee324..43e975fb67142 100644
--- a/drivers/dma/dw/of.c
+++ b/drivers/dma/dw/of.c
@@ -22,18 +22,21 @@ static struct dma_chan *dw_dma_of_xlate(struct of_phandle_args *dma_spec,
 	};
 	dma_cap_mask_t cap;
 
-	if (dma_spec->args_count != 3)
+	if (dma_spec->args_count < 3 || dma_spec->args_count > 4)
 		return NULL;
 
 	slave.src_id = dma_spec->args[0];
 	slave.dst_id = dma_spec->args[0];
 	slave.m_master = dma_spec->args[1];
 	slave.p_master = dma_spec->args[2];
+	if (dma_spec->args_count >= 4)
+		slave.channels = dma_spec->args[3];
 
 	if (WARN_ON(slave.src_id >= DW_DMA_MAX_NR_REQUESTS ||
 		    slave.dst_id >= DW_DMA_MAX_NR_REQUESTS ||
 		    slave.m_master >= dw->pdata->nr_masters ||
-		    slave.p_master >= dw->pdata->nr_masters))
+		    slave.p_master >= dw->pdata->nr_masters ||
+		    slave.channels >= BIT(dw->pdata->nr_channels)))
 		return NULL;
 
 	dma_cap_zero(cap);
diff --git a/include/linux/platform_data/dma-dw.h b/include/linux/platform_data/dma-dw.h
index f3eaf9ec00a1b..70078be166e3c 100644
--- a/include/linux/platform_data/dma-dw.h
+++ b/include/linux/platform_data/dma-dw.h
@@ -21,6 +21,7 @@
  * @dst_id:	dst request line
  * @m_master:	memory master for transfers on allocated channel
  * @p_master:	peripheral master for transfers on allocated channel
+ * @channels:	mask of the channels permitted for allocation (zero value means any)
  * @hs_polarity:set active low polarity of handshake interface
  */
 struct dw_dma_slave {
@@ -29,6 +30,7 @@ struct dw_dma_slave {
 	u8			dst_id;
 	u8			m_master;
 	u8			p_master;
+	u8			channels;
 	bool			hs_polarity;
 };
 
-- 
2.25.1




  parent reply	other threads:[~2020-10-27 14:52 UTC|newest]

Thread overview: 411+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-27 13:48 [PATCH 5.4 000/408] 5.4.73-rc1 review Greg Kroah-Hartman
2020-10-27 13:48 ` [PATCH 5.4 001/408] ibmveth: Switch order of ibmveth_helper calls Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 002/408] ibmveth: Identify ingress large send packets Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 003/408] ipv4: Restore flowi4_oif update before call to xfrm_lookup_route Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 004/408] mlx4: handle non-napi callers to napi_poll Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 005/408] net: fec: Fix phy_device lookup for phy_reset_after_clk_enable() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 006/408] net: fec: Fix PHY init after phy_reset_after_clk_enable() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 007/408] net: fix pos incrementment in ipv6_route_seq_next Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 008/408] net/smc: fix valid DMBE buffer sizes Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 009/408] net/tls: sendfile fails with ktls offload Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 010/408] net: usb: qmi_wwan: add Cellient MPL200 card Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 011/408] tipc: fix the skb_unshare() in tipc_buf_append() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 012/408] socket: fix option SO_TIMESTAMPING_NEW Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 013/408] can: m_can_platform: dont call m_can_class_suspend in runtime suspend Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 014/408] can: j1935: j1939_tp_tx_dat_new(): fix missing initialization of skbcnt Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 015/408] net: j1939: j1939_session_fresh_new(): " Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 016/408] net/ipv4: always honour route mtu during forwarding Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 017/408] net_sched: remove a redundant goto chain check Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 018/408] r8169: fix data corruption issue on RTL8402 Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 019/408] cxgb4: handle 4-tuple PEDIT to NAT mode translation Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 020/408] binder: fix UAF when releasing todo list Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 021/408] ALSA: bebob: potential info leak in hwdep_read() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 022/408] ALSA: hda: fix jack detection with Realtek codecs when in D3 Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 023/408] ALSA: hda/hdmi: fix incorrect locking in hdmi_pcm_close Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 024/408] nvme-pci: disable the write zeros command for Intel 600P/P3100 Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 025/408] chelsio/chtls: fix socket lock Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 026/408] chelsio/chtls: correct netdevice for vlan interface Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 027/408] chelsio/chtls: correct function return and return type Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 028/408] ibmvnic: save changed mac address to adapter->mac_addr Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 029/408] net: ftgmac100: Fix Aspeed ast2600 TX hang issue Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 030/408] net: hdlc: In hdlc_rcv, check to make sure dev is an HDLC device Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 031/408] net: hdlc_raw_eth: Clear the IFF_TX_SKB_SHARING flag after calling ether_setup Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 032/408] net: Properly typecast int values to set sk_max_pacing_rate Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 033/408] net/sched: act_tunnel_key: fix OOB write in case of IPv6 ERSPAN tunnels Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 034/408] nexthop: Fix performance regression in nexthop deletion Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 035/408] nfc: Ensure presence of NFC_ATTR_FIRMWARE_NAME attribute in nfc_genl_fw_download() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 036/408] r8169: fix operation under forced interrupt threading Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 037/408] selftests: forwarding: Add missing rp_filter configuration Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 038/408] selftests: rtnetlink: load fou module for kci_test_encap_fou() test Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 039/408] tcp: fix to update snd_wl1 in bulk receiver fast path Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 040/408] icmp: randomize the global rate limiter Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 041/408] ALSA: hda/realtek - The front Mic on a HP machine doesnt work Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 042/408] ALSA: hda/realtek - set mic to auto detect on a HP AIO machine Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 043/408] ALSA: hda/realtek - Add mute Led support for HP Elitebook 845 G7 Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 044/408] ALSA: hda/realtek: Enable audio jacks of ASUS D700SA with ALC887 Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 045/408] cifs: remove bogus debug code Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 046/408] cifs: Return the error from crypt_message when enc/dec key not found Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 047/408] SMB3: Resolve data corruption of TCP server info fields Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 048/408] KVM: nVMX: Reset the segment cache when stuffing guest segs Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 049/408] KVM: nVMX: Reload vmcs01 if getting vmcs12s pages fails Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 050/408] KVM: x86/mmu: Commit zap of remaining invalid pages when recovering lpages Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 051/408] KVM: SVM: Initialize prev_ga_tag before use Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 052/408] ima: Dont ignore errors from crypto_shash_update() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 053/408] crypto: algif_aead - Do not set MAY_BACKLOG on the async path Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 054/408] crypto: caam/qi - add fallback for XTS with more than 8B IV Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 055/408] EDAC/i5100: Fix error handling order in i5100_init_one() Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 056/408] EDAC/aspeed: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 057/408] EDAC/ti: " Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 058/408] perf/x86/intel/ds: Fix x86_pmu_stop warning for large PEBS Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 059/408] x86/fpu: Allow multiple bits in clearcpuid= parameter Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 060/408] drivers/perf: xgene_pmu: Fix uninitialized resource struct Greg Kroah-Hartman
2020-10-27 13:49 ` [PATCH 5.4 061/408] drivers/perf: thunderx2_pmu: Fix memory resource error handling Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 062/408] sched/fair: Fix wrong cpu selecting from isolated domain Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 063/408] perf/x86/intel/uncore: Update Ice Lake uncore units Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 064/408] perf/x86/intel/uncore: Reduce the number of CBOX counters Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 065/408] x86/nmi: Fix nmi_handle() duration miscalculation Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 066/408] x86/events/amd/iommu: Fix sizeof mismatch Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 067/408] crypto: algif_skcipher - EBUSY on aio should be an error Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 068/408] crypto: mediatek - Fix wrong return value in mtk_desc_ring_alloc() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 069/408] crypto: ixp4xx - Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 070/408] crypto: picoxcell - Fix potential race condition bug Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 071/408] media: tuner-simple: fix regression in simple_set_radio_freq Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 072/408] media: Revert "media: exynos4-is: Add missed check for pinctrl_lookup_state()" Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 073/408] media: ov5640: Correct Bit Div register in clock tree diagram Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 074/408] media: m5mols: Check function pointer in m5mols_sensor_power Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 075/408] media: uvcvideo: Set media controller entity functions Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 076/408] media: uvcvideo: Silence shift-out-of-bounds warning Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 077/408] media: staging/intel-ipu3: css: Correctly reset some memory Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 078/408] media: omap3isp: Fix memleak in isp_probe Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 079/408] media: i2c: ov5640: Remain in power down for DVP mode unless streaming Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 080/408] media: i2c: ov5640: Separate out mipi configuration from s_power Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 081/408] media: i2c: ov5640: Enable data pins on poweron for DVP mode Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 082/408] media: rcar_drif: Fix fwnode reference leak when parsing DT Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 083/408] media: rcar_drif: Allocate v4l2_async_subdev dynamically Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 084/408] media: rcar-csi2: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 085/408] crypto: omap-sham - fix digcnt register handling with export/import Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 086/408] hwmon: (pmbus/max34440) Fix status register reads for MAX344{51,60,61} Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 087/408] cypto: mediatek - fix leaks in mtk_desc_ring_alloc Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 088/408] media: mx2_emmaprp: Fix memleak in emmaprp_probe Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 089/408] media: tc358743: initialize variable Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 090/408] media: tc358743: cleanup tc358743_cec_isr Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 091/408] media: rcar-vin: Fix a reference count leak Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 092/408] media: rockchip/rga: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 093/408] media: platform: fcp: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 094/408] media: camss: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 095/408] media: s5p-mfc: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 096/408] media: stm32-dcmi: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 097/408] media: ti-vpe: Fix a missing check and " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 098/408] regulator: resolve supply after creating regulator Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 099/408] pinctrl: bcm: fix kconfig dependency warning when !GPIOLIB Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 100/408] spi: spi-s3c64xx: swap s3c64xx_spi_set_cs() and s3c64xx_enable_datapath() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 101/408] spi: spi-s3c64xx: Check return values Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 102/408] blk-mq: move cancel of hctx->run_work to the front of blk_exit_queue Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 103/408] ath10k: provide survey info as accumulated data Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 104/408] drm/vkms: fix xrgb on compute crc Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 105/408] Bluetooth: hci_uart: Cancel init work before unregistering Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 106/408] drm/amd/display: Fix wrong return value in dm_update_plane_state() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 107/408] drm: panel: Fix bus format for OrtusTech COM43H4M85ULC panel Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 108/408] ath6kl: prevent potential array overflow in ath6kl_add_new_sta() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 109/408] ath9k: Fix potential out of bounds in ath9k_htc_txcompletion_cb() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 110/408] ath10k: Fix the size used in a dma_free_coherent() call in an error handling path Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 111/408] wcn36xx: Fix reported 802.11n rx_highest rate wcn3660/wcn3680 Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 112/408] ASoC: qcom: lpass-platform: fix memory leak Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 113/408] ASoC: qcom: lpass-cpu: fix concurrency issue Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 114/408] brcmfmac: check ndev pointer Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 115/408] mwifiex: Do not use GFP_KERNEL in atomic context Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 116/408] staging: rtl8192u: " Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 117/408] drm/gma500: fix error check Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 118/408] scsi: qla4xxx: Fix an error handling path in qla4xxx_get_host_stats() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 119/408] scsi: qla2xxx: Fix wrong return value in qlt_chk_unresolv_exchg() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 120/408] scsi: qla2xxx: Fix wrong return value in qla_nvme_register_hba() Greg Kroah-Hartman
2020-10-27 13:50 ` [PATCH 5.4 121/408] scsi: csiostor: Fix wrong return value in csio_hw_prep_fw() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 122/408] backlight: sky81452-backlight: Fix refcount imbalance on error Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 123/408] staging: emxx_udc: Fix passing of NULL to dma_alloc_coherent() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 124/408] VMCI: check return value of get_user_pages_fast() for errors Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 125/408] mm/error_inject: Fix allow_error_inject function signatures Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 126/408] drm: panel: Fix bpc for OrtusTech COM43H4M85ULC panel Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 127/408] drm/crc-debugfs: Fix memleak in crc_control_write Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 128/408] binder: Remove bogus warning on failed same-process transaction Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 129/408] tty: serial: earlycon dependency Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 130/408] tty: hvcs: Dont NULL tty->driver_data until hvcs_cleanup() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 131/408] pty: do tty_flip_buffer_push without port->lock in pty_write Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 132/408] pwm: lpss: Fix off by one error in base_unit math in pwm_lpss_prepare() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 133/408] pwm: lpss: Add range limit check for the base_unit register value Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 134/408] drivers/virt/fsl_hypervisor: Fix error handling path Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 135/408] video: fbdev: vga16fb: fix setting of pixclock because a pass-by-value error Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 136/408] video: fbdev: sis: fix null ptr dereference Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 137/408] video: fbdev: radeon: Fix memleak in radeonfb_pci_register Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 138/408] ASoC: fsl: imx-es8328: add missing put_device() call in imx_es8328_probe() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 139/408] HID: roccat: add bounds checking in kone_sysfs_write_settings() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 140/408] drm/msm: Avoid div-by-zero in dpu_crtc_atomic_check() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 141/408] drm/panfrost: Ensure GPU quirks are always initialised Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 142/408] iomap: Clear page error before beginning a write Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 143/408] pinctrl: mcp23s08: Fix mcp23x17_regmap initialiser Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 144/408] pinctrl: mcp23s08: Fix mcp23x17 precious range Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 145/408] net/mlx5: Dont call timecounter cyc2time directly from 1PPS flow Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 146/408] scsi: mpt3sas: Fix sync irqs Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 147/408] net: stmmac: use netif_tx_start|stop_all_queues() function Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 148/408] cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 149/408] drm: mxsfb: check framebuffer pitch Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 150/408] coresight: etm4x: Handle unreachable sink in perf mode Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 151/408] xhci: dont create endpoint debugfs entry before ring buffer is set Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 152/408] net: dsa: rtl8366: Check validity of passed VLANs Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 153/408] net: dsa: rtl8366: Refactor VLAN/PVID init Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 154/408] net: dsa: rtl8366: Skip PVID setting if not requested Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 155/408] net: wilc1000: clean up resource in error path of init mon interface Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 156/408] ASoC: tlv320aic32x4: Fix bdiv clock rate derivation Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 157/408] net: dsa: rtl8366rb: Support all 4096 VLANs Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 158/408] spi: omap2-mcspi: Improve performance waiting for CHSTAT Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 159/408] ath6kl: wmi: prevent a shift wrapping bug in ath6kl_wmi_delete_pstream_cmd() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 160/408] dmaengine: dmatest: Check list for emptiness before access its last entry Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 161/408] misc: mic: scif: Fix error handling path Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 162/408] ALSA: seq: oss: Avoid mutex lock for a long-time ioctl Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 163/408] usb: dwc2: Fix parameter type in function pointer prototype Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 164/408] quota: clear padding in v2r1_mem2diskdqb() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 165/408] slimbus: core: check get_addr before removing laddr ida Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 166/408] slimbus: core: do not enter to clock pause mode in core Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 167/408] slimbus: qcom-ngd-ctrl: disable ngd in qmi server down callback Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 168/408] ASoC: fsl_sai: Instantiate snd_soc_dai_driver Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 169/408] HID: hid-input: fix stylus battery reporting Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 170/408] nvmem: core: fix possibly memleak when use nvmem_cell_info_to_nvmem_cell() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 171/408] nl80211: fix OBSS PD min and max offset validation Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 172/408] coresight: etm: perf: Fix warning caused by etm_setup_aux failure Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 173/408] ibmvnic: set up 200GBPS speed Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 174/408] qtnfmac: fix resource leaks on unsupported iftype error return path Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 175/408] iio: adc: stm32-adc: fix runtime autosuspend delay when slow polling Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 176/408] net: enic: Cure the enic api locking trainwreck Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 177/408] mfd: sm501: Fix leaks in probe() Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 178/408] iwlwifi: mvm: split a print to avoid a WARNING in ROC Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 179/408] usb: gadget: f_ncm: fix ncm_bitrate for SuperSpeed and above Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 180/408] usb: gadget: u_ether: enable qmult on SuperSpeed Plus as well Greg Kroah-Hartman
2020-10-27 13:51 ` [PATCH 5.4 181/408] nl80211: fix non-split wiphy information Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 182/408] usb: dwc2: Fix INTR OUT transfers in DDMA mode Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 183/408] scsi: target: tcmu: Fix warning: page may be used uninitialized Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 184/408] scsi: be2iscsi: Fix a theoretical leak in beiscsi_create_eqs() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 185/408] ipmi_si: Fix wrong return value in try_smi_init() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 186/408] platform/x86: mlx-platform: Remove PSU EEPROM configuration Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 187/408] mwifiex: fix double free Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 188/408] ipvs: clear skb->tstamp in forwarding path Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 189/408] net: korina: fix kfree of rx/tx descriptor array Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 190/408] netfilter: nf_log: missing vlan offload tag and proto Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 191/408] mm/swapfile.c: fix potential memory leak in sys_swapon Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 192/408] mm/memcg: fix device private memcg accounting Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 193/408] mm, oom_adj: dont loop through tasks in __set_oom_adj when not necessary Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 194/408] fs: fix NULL dereference due to data race in prepend_path() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 195/408] selftests/ftrace: Change synthetic event name for inter-event-combined test Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 196/408] i3c: master add i3c_master_attach_boardinfo to preserve boardinfo Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 197/408] IB/mlx4: Fix starvation in paravirt mux/demux Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 198/408] IB/mlx4: Adjust delayed work when a dup is observed Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 199/408] powerpc/pseries: Fix missing of_node_put() in rng_init() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 200/408] powerpc/icp-hv: Fix missing of_node_put() in success path Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 201/408] RDMA/ucma: Fix locking for ctx->events_reported Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 202/408] RDMA/ucma: Add missing locking around rdma_leave_multicast() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 203/408] mtd: lpddr: fix excessive stack usage with clang Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 204/408] RDMA/hns: Add a check for current state before modifying QP Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 205/408] RDMA/umem: Fix signature of stub ib_umem_find_best_pgsz() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 206/408] powerpc/pseries: explicitly reschedule during drmem_lmb list traversal Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 207/408] pseries/drmem: dont cache node id in drmem_lmb struct Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 208/408] RDMA/mlx5: Fix potential race between destroy and CQE poll Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 209/408] mtd: mtdoops: Dont write panic data twice Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 210/408] ARM: 9007/1: l2c: fix prefetch bits init in L2X0_AUX_CTRL using DT values Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 211/408] arc: plat-hsdk: fix kconfig dependency warning when !RESET_CONTROLLER Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 212/408] ida: Free allocated bitmap in error path Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 213/408] xfs: limit entries returned when counting fsmap records Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 214/408] xfs: fix deadlock and streamline xfs_getfsmap performance Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 215/408] xfs: fix high key handling in the rt allocators query_range function Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 216/408] RDMA/umem: Fix ib_umem_find_best_pgsz() for mappings that cross a page boundary Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 217/408] RDMA/umem: Prevent small pages from being returned by ib_umem_find_best_pgsz() Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 218/408] RDMA/qedr: Fix qp structure memory leak Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 219/408] RDMA/qedr: Fix use of uninitialized field Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 220/408] RDMA/qedr: Fix return code if accept is called on a destroyed qp Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 221/408] RDMA/qedr: Fix inline size returned for iWARP Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 222/408] powerpc/book3s64/hash/4k: Support large linear mapping range with 4K Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 223/408] powerpc/tau: Use appropriate temperature sample interval Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 224/408] powerpc/tau: Convert from timer to workqueue Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 225/408] powerpc/tau: Remove duplicated set_thresholds() call Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 226/408] powerpc/tau: Check processor type before enabling TAU interrupt Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 227/408] powerpc/tau: Disable TAU between measurements Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 228/408] powerpc/64s/radix: Fix mm_cpumask trimming race vs kthread_use_mm Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 229/408] RDMA/cma: Remove dead code for kernel rdmacm multicast Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 230/408] RDMA/cma: Consolidate the destruction of a cma_multicast in one place Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 231/408] perf intel-pt: Fix "context_switch event has no tid" error Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 232/408] RDMA/hns: Set the unsupported wr opcode Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 233/408] RDMA/mlx5: Disable IB_DEVICE_MEM_MGT_EXTENSIONS if IB_WR_REG_MR cant work Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 234/408] i40iw: Add support to make destroy QP synchronous Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 235/408] perf stat: Skip duration_time in setup_system_wide Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 236/408] RDMA/hns: Fix the wrong value of rnr_retry when querying qp Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 237/408] RDMA/hns: Fix missing sq_sig_type when querying QP Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 238/408] mtd: rawnand: vf610: disable clk on error handling path in probe Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 239/408] mtd: spinand: gigadevice: Only one dummy byte in QUADIO Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 240/408] mtd: spinand: gigadevice: Add QE Bit Greg Kroah-Hartman
2020-10-27 13:52 ` [PATCH 5.4 241/408] kdb: Fix pager search for multi-line strings Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 242/408] overflow: Include header file with SIZE_MAX declaration Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 243/408] RDMA/ipoib: Set rtnl_link_ops for ipoib interfaces Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 244/408] powerpc/perf: Exclude pmc5/6 from the irrelevant PMU group constraints Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 245/408] powerpc/perf/hv-gpci: Fix starting index value Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 246/408] i3c: master: Fix error return in cdns_i3c_master_probe() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 247/408] cpufreq: powernv: Fix frame-size-overflow in powernv_cpufreq_reboot_notifier Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 248/408] IB/rdmavt: Fix sizeof mismatch Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 249/408] RDMA/rxe: Fix skb lifetime in rxe_rcv_mcast_pkt() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 250/408] maiblox: mediatek: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 251/408] selftests/powerpc: Fix eeh-basic.sh exit codes Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 252/408] f2fs: wait for sysfs kobject removal before freeing f2fs_sb_info Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 253/408] RDMA/rxe: Handle skb_clone() failure in rxe_recv.c Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 254/408] mm/page_owner: change split_page_owner to take a count Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 255/408] lib/crc32.c: fix trivial typo in preprocessor condition Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 256/408] ramfs: fix nommu mmap with gaps in the page cache Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 257/408] rapidio: fix error handling path Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 258/408] rapidio: fix the missed put_device() for rio_mport_add_riodev Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 259/408] mailbox: avoid timer start from callback Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 260/408] i2c: rcar: Auto select RESET_CONTROLLER Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 261/408] clk: meson: g12a: mark fclk_div2 as critical Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 262/408] PCI: aardvark: Check for errors from pci_bridge_emul_init() call Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 263/408] PCI: iproc: Set affinity mask on MSI interrupts Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 264/408] rpmsg: smd: Fix a kobj leak in in qcom_smd_parse_edge() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 265/408] PCI/IOV: Mark VFs as not implementing PCI_COMMAND_MEMORY Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 266/408] vfio/pci: Decouple PCI_COMMAND_MEMORY bit checks from is_virtfn Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 267/408] clk: qcom: gcc-sdm660: Fix wrong parent_map Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 268/408] clk: keystone: sci-clk: fix parsing assigned-clock data during probe Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 269/408] pwm: img: Fix null pointer access in probe Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 270/408] clk: rockchip: Initialize hw to error to avoid undefined behavior Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 271/408] clk: mediatek: add UART0 clock support Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 272/408] module: statically initialize init section freeing data Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 273/408] clk: at91: clk-main: update key before writing AT91_CKGR_MOR Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 274/408] clk: bcm2835: add missing release if devm_clk_hw_register fails Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 275/408] watchdog: Fix memleak in watchdog_cdev_register Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 276/408] watchdog: Use put_device on error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 277/408] watchdog: sp5100: Fix definition of EFCH_PM_DECODEEN3 Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 278/408] svcrdma: fix bounce buffers for unaligned offsets and multiple pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 279/408] ext4: limit entries returned when counting fsmap records Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 280/408] vfio/pci: Clear token on bypass registration failure Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 281/408] vfio iommu type1: Fix memory leak in vfio_iommu_type1_pin_pages Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 282/408] clk: imx8mq: Fix usdhc parents order Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 283/408] SUNRPC: fix copying of multiple pages in gss_read_proxy_verf() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 284/408] Input: imx6ul_tsc - clean up some errors in imx6ul_tsc_resume() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 285/408] Input: stmfts - fix a & vs && typo Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 286/408] Input: ep93xx_keypad - fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 287/408] Input: omap4-keypad " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 288/408] Input: twl4030_keypad " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 289/408] Input: sun4i-ps2 " Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 290/408] KVM: x86: emulating RDPID failure shall return #UD rather than #GP Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 291/408] scsi: bfa: Fix error return in bfad_pci_init() Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 292/408] netfilter: conntrack: connection timeout after re-register Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 293/408] netfilter: ebtables: Fixes dropping of small packets in bridge nat Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 294/408] netfilter: nf_fwd_netdev: clear timestamp in forwarding path Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 295/408] arm64: dts: meson: vim3: correct led polarity Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 296/408] ARM: dts: imx6sl: fix rng node Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 297/408] ARM: at91: pm: of_node_put() after its usage Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 298/408] ARM: s3c24xx: fix mmc gpio lookup tables Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 299/408] ARM: dts: sun8i: r40: bananapi-m2-ultra: Fix dcdc1 regulator Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 300/408] arm64: dts: allwinner: h5: remove Mali GPU PMU module Greg Kroah-Hartman
2020-10-27 13:53 ` [PATCH 5.4 301/408] memory: omap-gpmc: Fix a couple off by ones Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 302/408] memory: omap-gpmc: Fix build error without CONFIG_OF Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 303/408] memory: fsl-corenet-cf: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 304/408] arm64: dts: imx8mq: Add missing interrupts to GPC Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 305/408] arm64: dts: qcom: msm8916: Remove one more thermal trip point unit name Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 306/408] arm64: dts: qcom: pm8916: Remove invalid reg size from wcd_codec Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 307/408] arm64: dts: qcom: msm8916: Fix MDP/DSI interrupts Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 308/408] arm64: dts: renesas: r8a77990: Fix MSIOF1 DMA channels Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 309/408] arm64: dts: renesas: r8a774c0: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 310/408] arm64: dts: actions: limit address range for pinctrl node Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 311/408] ARM: dts: owl-s500: Fix incorrect PPI interrupt specifiers Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 312/408] soc: fsl: qbman: Fix return value on success Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 313/408] ARM: OMAP2+: Restore MPU power domain if cpu_cluster_pm_enter() fails Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 314/408] arm64: dts: zynqmp: Remove additional compatible string for i2c IPs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 315/408] ARM: dts: meson8: remove two invalid interrupt lines from the GPU node Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 316/408] lightnvm: fix out-of-bounds write to array devices->info[] Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 317/408] powerpc/powernv/dump: Fix race while processing OPAL dump Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 318/408] powerpc/pseries: Avoid using addr_to_pfn in real mode Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 319/408] nvmet: fix uninitialized work for zero kato Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 320/408] NTB: hw: amd: fix an issue about leak system resources Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 321/408] sched/features: Fix !CONFIG_JUMP_LABEL case Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 322/408] perf: correct SNOOPX field offset Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 323/408] i2c: core: Restore acpi_walk_dep_device_list() getting called after registering the ACPI i2c devs Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 324/408] md/bitmap: fix memory leak of temporary bitmap Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 325/408] block: ratelimit handle_bad_sector() message Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 326/408] crypto: ccp - fix error handling Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 327/408] x86/asm: Replace __force_order with a memory clobber Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 328/408] x86/mce: Add Skylake quirk for patrol scrub reported errors Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 329/408] media: firewire: fix memory leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 330/408] media: ati_remote: sanity check for both endpoints Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 331/408] media: st-delta: Fix reference count leak in delta_run_work Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 332/408] media: sti: Fix reference count leaks Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 333/408] media: exynos4-is: Fix several reference count leaks due to pm_runtime_get_sync Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 334/408] media: exynos4-is: Fix a reference count leak " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 335/408] media: exynos4-is: Fix a reference count leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 336/408] media: vsp1: Fix runtime PM imbalance on error Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 337/408] media: platform: s3c-camif: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 338/408] media: platform: sti: hva: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 339/408] media: bdisp: " Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 340/408] media: media/pci: prevent memory leak in bttv_probe Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 341/408] x86/mce: Make mce_rdmsrl() panic on an inaccessible MSR Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 342/408] media: uvcvideo: Ensure all probed info is returned to v4l2 Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 343/408] mmc: sdio: Check for CISTPL_VERS_1 buffer size Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 344/408] media: saa7134: avoid a shift overflow Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 345/408] media: venus: fixes for list corruption Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 346/408] fs: dlm: fix configfs memory leak Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 347/408] media: venus: core: Fix runtime PM imbalance in venus_probe Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 348/408] ntfs: add check for mft record size in superblock Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 349/408] ip_gre: set dev->hard_header_len and dev->needed_headroom properly Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 350/408] mac80211: handle lack of sband->bitrates in rates Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 351/408] PM: hibernate: remove the bogus call to get_gendisk() in software_resume() Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 352/408] scsi: mvumi: Fix error return in mvumi_io_attach() Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 353/408] scsi: target: core: Add CONTROL field for trace events Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 354/408] mic: vop: copy data to kernel space then write to io memory Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 355/408] misc: vop: add round_up(x,4) for vring_size to avoid kernel panic Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 356/408] usb: dwc3: Add splitdisable quirk for Hisilicon Kirin Soc Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 357/408] usb: gadget: function: printer: fix use-after-free in __lock_acquire Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 358/408] udf: Limit sparing table size Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 359/408] udf: Avoid accessing uninitialized data on failed inode read Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 360/408] rtw88: increse the size of rx buffer size Greg Kroah-Hartman
2020-10-27 13:54 ` [PATCH 5.4 361/408] USB: cdc-acm: handle broken union descriptors Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 362/408] usb: dwc3: simple: add support for Hikey 970 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 363/408] can: flexcan: flexcan_chip_stop(): add error handling and propagate error value Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 364/408] ath9k: hif_usb: fix race condition between usb_get_urb() and usb_kill_anchored_urbs() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 365/408] drm/panfrost: add amlogic reset quirk callback Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 366/408] bpf: Limit callers stack depth 256 for subprogs with tailcalls Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 367/408] misc: rtsx: Fix memory leak in rtsx_pci_probe Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 368/408] reiserfs: only call unlock_new_inode() if I_NEW Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 369/408] opp: Prevent memory leak in dev_pm_opp_attach_genpd() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 370/408] xfs: make sure the rt allocator doesnt run off the end Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 371/408] usb: ohci: Default to per-port over-current protection Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 372/408] Bluetooth: Only mark socket zapped after unlocking Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 373/408] drm/msm/a6xx: fix a potential overflow issue Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 374/408] iomap: fix WARN_ON_ONCE() from unprivileged users Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 375/408] scsi: ibmvfc: Fix error return in ibmvfc_probe() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 376/408] scsi: qla2xxx: Warn if done() or free() are called on an already freed srb Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 377/408] selftests/bpf: Fix test_sysctl_loop{1, 2} failure due to clang change Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 378/408] brcmsmac: fix memory leak in wlc_phy_attach_lcnphy Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 379/408] rtl8xxxu: prevent potential memory leak Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 380/408] Fix use after free in get_capset_info callback Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 381/408] HID: ite: Add USB id match for Acer One S1003 keyboard dock Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 382/408] scsi: qedf: Return SUCCESS if stale rport is encountered Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 383/408] scsi: qedi: Protect active command list to avoid list corruption Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 384/408] scsi: qedi: Fix list_del corruption while removing active I/O Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 385/408] fbmem: add margin check to fb_check_caps() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 386/408] tty: ipwireless: fix error handling Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 387/408] Bluetooth: btusb: Fix memleak in btusb_mtk_submit_wmt_recv_urb Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 388/408] ipvs: Fix uninit-value in do_ip_vs_set_ctl() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 389/408] reiserfs: Fix memory leak in reiserfs_parse_options() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 390/408] mwifiex: dont call del_timer_sync() on uninitialized timer Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 391/408] ALSA: hda/ca0132 - Add AE-7 microphone selection commands Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 392/408] ALSA: hda/ca0132 - Add new quirk ID for SoundBlaster AE-7 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 393/408] scsi: smartpqi: Avoid crashing kernel for controller issues Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 394/408] brcm80211: fix possible memleak in brcmf_proto_msgbuf_attach Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 395/408] usb: core: Solve race condition in anchor cleanup functions Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 396/408] scsi: ufs: ufs-qcom: Fix race conditions caused by ufs_qcom_testbus_config() Greg Kroah-Hartman
2020-10-27 13:55 ` Greg Kroah-Hartman [this message]
2020-10-27 13:55 ` [PATCH 5.4 398/408] dmaengine: dw: Activate FIFO-mode for memory peripherals only Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 399/408] ath10k: check idx validity in __ath10k_htt_rx_ring_fill_n() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 400/408] net: korina: cast KSEG0 address to pointer in kfree Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 401/408] s390/qeth: dont let HW override the configured port role Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 402/408] tty: serial: lpuart: fix lpuart32_write usage Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 403/408] tty: serial: fsl_lpuart: fix lpuart32_poll_get_char Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 404/408] usb: cdc-acm: add quirk to blacklist ETAS ES58X devices Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 405/408] USB: cdc-wdm: Make wdm_flush() interruptible and add wdm_fsync() Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 406/408] usb: cdns3: gadget: free interrupt after gadget has deleted Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 407/408] eeprom: at25: set minimum read/write access stride to 1 Greg Kroah-Hartman
2020-10-27 13:55 ` [PATCH 5.4 408/408] usb: gadget: f_ncm: allow using NCM in SuperSpeed Plus gadgets Greg Kroah-Hartman
2020-10-28  6:53 ` [PATCH 5.4 000/408] 5.4.73-rc1 review Naresh Kamboju
     [not found] ` <20201028171108.GE118534@roeck-us.net>
2020-10-28 19:56   ` 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=20201027135513.413483027@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Sergey.Semin@baikalelectronics.ru \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vkoul@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).