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, Tomer Tayar <Tomer.Tayar@cavium.com>,
	Ariel Elior <Ariel.Elior@cavium.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.18 172/228] qed: Wait for ready indication before rereading the shmem
Date: Tue,  2 Oct 2018 06:24:29 -0700	[thread overview]
Message-ID: <20181002132510.289135971@linuxfoundation.org> (raw)
In-Reply-To: <20181002132459.032960735@linuxfoundation.org>

4.18-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Tomer Tayar <Tomer.Tayar@cavium.com>

[ Upstream commit f00d25f3154b676fcea4502a25b94bd7f142ca74 ]

The MFW might be reset and re-update its shared memory.
Upon the detection of such a reset the driver rereads this memory, but it
has to wait till the data is valid.
This patch adds the missing wait for a data ready indication.

Signed-off-by: Tomer Tayar <Tomer.Tayar@cavium.com>
Signed-off-by: Ariel Elior <Ariel.Elior@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/net/ethernet/qlogic/qed/qed_mcp.c |   50 ++++++++++++++++++++++++------
 1 file changed, 41 insertions(+), 9 deletions(-)

--- a/drivers/net/ethernet/qlogic/qed/qed_mcp.c
+++ b/drivers/net/ethernet/qlogic/qed/qed_mcp.c
@@ -183,18 +183,57 @@ int qed_mcp_free(struct qed_hwfn *p_hwfn
 	return 0;
 }
 
+/* Maximum of 1 sec to wait for the SHMEM ready indication */
+#define QED_MCP_SHMEM_RDY_MAX_RETRIES	20
+#define QED_MCP_SHMEM_RDY_ITER_MS	50
+
 static int qed_load_mcp_offsets(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
 {
 	struct qed_mcp_info *p_info = p_hwfn->mcp_info;
+	u8 cnt = QED_MCP_SHMEM_RDY_MAX_RETRIES;
+	u8 msec = QED_MCP_SHMEM_RDY_ITER_MS;
 	u32 drv_mb_offsize, mfw_mb_offsize;
 	u32 mcp_pf_id = MCP_PF_ID(p_hwfn);
 
 	p_info->public_base = qed_rd(p_hwfn, p_ptt, MISC_REG_SHARED_MEM_ADDR);
-	if (!p_info->public_base)
-		return 0;
+	if (!p_info->public_base) {
+		DP_NOTICE(p_hwfn,
+			  "The address of the MCP scratch-pad is not configured\n");
+		return -EINVAL;
+	}
 
 	p_info->public_base |= GRCBASE_MCP;
 
+	/* Get the MFW MB address and number of supported messages */
+	mfw_mb_offsize = qed_rd(p_hwfn, p_ptt,
+				SECTION_OFFSIZE_ADDR(p_info->public_base,
+						     PUBLIC_MFW_MB));
+	p_info->mfw_mb_addr = SECTION_ADDR(mfw_mb_offsize, mcp_pf_id);
+	p_info->mfw_mb_length = (u16)qed_rd(p_hwfn, p_ptt,
+					    p_info->mfw_mb_addr +
+					    offsetof(struct public_mfw_mb,
+						     sup_msgs));
+
+	/* The driver can notify that there was an MCP reset, and might read the
+	 * SHMEM values before the MFW has completed initializing them.
+	 * To avoid this, the "sup_msgs" field in the MFW mailbox is used as a
+	 * data ready indication.
+	 */
+	while (!p_info->mfw_mb_length && --cnt) {
+		msleep(msec);
+		p_info->mfw_mb_length =
+			(u16)qed_rd(p_hwfn, p_ptt,
+				    p_info->mfw_mb_addr +
+				    offsetof(struct public_mfw_mb, sup_msgs));
+	}
+
+	if (!cnt) {
+		DP_NOTICE(p_hwfn,
+			  "Failed to get the SHMEM ready notification after %d msec\n",
+			  QED_MCP_SHMEM_RDY_MAX_RETRIES * msec);
+		return -EBUSY;
+	}
+
 	/* Calculate the driver and MFW mailbox address */
 	drv_mb_offsize = qed_rd(p_hwfn, p_ptt,
 				SECTION_OFFSIZE_ADDR(p_info->public_base,
@@ -204,13 +243,6 @@ static int qed_load_mcp_offsets(struct q
 		   "drv_mb_offsiz = 0x%x, drv_mb_addr = 0x%x mcp_pf_id = 0x%x\n",
 		   drv_mb_offsize, p_info->drv_mb_addr, mcp_pf_id);
 
-	/* Set the MFW MB address */
-	mfw_mb_offsize = qed_rd(p_hwfn, p_ptt,
-				SECTION_OFFSIZE_ADDR(p_info->public_base,
-						     PUBLIC_MFW_MB));
-	p_info->mfw_mb_addr = SECTION_ADDR(mfw_mb_offsize, mcp_pf_id);
-	p_info->mfw_mb_length =	(u16)qed_rd(p_hwfn, p_ptt, p_info->mfw_mb_addr);
-
 	/* Get the current driver mailbox sequence before sending
 	 * the first command
 	 */



  parent reply	other threads:[~2018-10-02 14:02 UTC|newest]

Thread overview: 243+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-02 13:21 [PATCH 4.18 000/228] 4.18.12-stable review Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 001/228] crypto: skcipher - Fix -Wstringop-truncation warnings Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 002/228] iio: adc: ina2xx: avoid kthread_stop() with stale task_struct Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 003/228] tsl2550: fix lux1_input error in low light Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 004/228] misc: ibmvmc: Use GFP_ATOMIC under spin lock Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 005/228] vmci: type promotion bug in qp_host_get_user_memory() Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 006/228] siox: dont create a thread without starting it Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 007/228] net: hns3: Fix for mailbox message truncated problem Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 008/228] net: hns3: Fix for mac pause not disable in pfc mode Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 009/228] net: hns3: Fix warning bug when doing lp selftest Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 010/228] net: hns3: Fix get_vector ops in hclgevf_main module Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 011/228] x86/numa_emulation: Fix emulated-to-physical node mapping Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 012/228] staging: rts5208: fix missing error check on call to rtsx_write_register Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 013/228] power: supply: axp288_charger: Fix initial constant_charge_current value Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 014/228] misc: sram: enable clock before registering regions Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 015/228] serial: sh-sci: Stop RX FIFO timer during port shutdown Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 016/228] uwb: hwa-rc: fix memory leak at probe Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 017/228] power: vexpress: fix corruption in notifier registration Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 018/228] iommu/amd: make sure TLB to be flushed before IOVA freed Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 019/228] Bluetooth: Add a new Realtek 8723DE ID 0bda:b009 Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 020/228] USB: serial: kobil_sct: fix modem-status error handling Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 021/228] 6lowpan: iphc: reset mac_header after decompress to fix panic Greg Kroah-Hartman
2018-10-02 13:21 ` [PATCH 4.18 022/228] iommu/msm: Dont call iommu_device_{,un}link from atomic context Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 023/228] s390/mm: correct allocate_pgste proc_handler callback Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 024/228] power: remove possible deadlock when unregistering power_supply Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 025/228] drm/amd/display/dc/dce: Fix multiple potential integer overflows Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 026/228] drm/amd/display: fix use of uninitialized memory Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 027/228] md-cluster: clear another nodes suspend_area after the copy is finished Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 028/228] cxgb4: Fix the condition to check if the card is T5 Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 029/228] RDMA/bnxt_re: Fix a couple off by one bugs Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 030/228] RDMA/i40w: Hold read semaphore while looking after VMA Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 031/228] RDMA/bnxt_re: Fix a bunch of off by one bugs in qplib_fp.c Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 032/228] IB/core: type promotion bug in rdma_rw_init_one_mr() Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 033/228] media: exynos4-is: Prevent NULL pointer dereference in __isp_video_try_fmt() Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 034/228] IB/mlx4: Test port number before querying type Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 035/228] powerpc/kdump: Handle crashkernel memory reservation failure Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 036/228] media: fsl-viu: fix error handling in viu_of_probe() Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 037/228] vhost_net: Avoid tx vring kicks during busyloop Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 038/228] media: staging/imx: fill vb2_v4l2_buffer field entry Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 039/228] IB/mlx5: Fix GRE flow specification Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 040/228] include/rdma/opa_addr.h: Fix an endianness issue Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 041/228] x86/tsc: Add missing header to tsc_msr.c Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 042/228] ARM: hwmod: RTC: Dont assume lock/unlock will be called with irq enabled Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 043/228] x86/entry/64: Add two more instruction suffixes Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 044/228] ARM: dts: ls1021a: Add missing cooling device properties for CPUs Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 045/228] scsi: target/iscsi: Make iscsit_ta_authentication() respect the output buffer size Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 046/228] thermal: i.MX: Allow thermal probe to fail gracefully in case of bad calibration Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 047/228] scsi: klist: Make it safe to use klists in atomic context Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 048/228] scsi: ibmvscsi: Improve strings handling Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 049/228] scsi: target: Avoid that EXTENDED COPY commands trigger lock inversion Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 050/228] usb: wusbcore: security: cast sizeof to int for comparison Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 051/228] ath10k: sdio: use same endpoint id for all packets in a bundle Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 052/228] ath10k: sdio: set skb len for all rx packets Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 053/228] powerpc/powernv/ioda2: Reduce upper limit for DMA window size Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 054/228] platform/x86: asus-wireless: Fix uninitialized symbol usage Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 055/228] ACPI / button: increment wakeup count only when notified Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 056/228] s390/sysinfo: add missing #ifdef CONFIG_PROC_FS Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 057/228] alarmtimer: Prevent overflow for relative nanosleep Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 058/228] s390/dasd: correct numa_node in dasd_alloc_queue Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 059/228] s390/scm_blk: correct numa_node in scm_blk_dev_setup Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 060/228] s390/extmem: fix gcc 8 stringop-overflow warning Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 061/228] mtd: rawnand: atmel: add module param to avoid using dma Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 062/228] iio: accel: adxl345: convert address field usage in iio_chan_spec Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 063/228] posix-timers: Make forward callback return s64 Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 064/228] posix-timers: Sanitize overrun handling Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 065/228] ALSA: snd-aoa: add of_node_put() in error path Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 066/228] selftests: forwarding: Tweak tc filters for mirror-to-gretap tests Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 067/228] ath10k: use locked skb_dequeue for rx completions Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 068/228] media: s3c-camif: ignore -ENOIOCTLCMD from v4l2_subdev_call for s_power Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 069/228] media: soc_camera: ov772x: correct setting of banding filter Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 070/228] media: omap3isp: zero-initialize the isp cam_xclk{a,b} initial data Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 071/228] media: ov772x: add checks for register read errors Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 072/228] staging: android: ashmem: Fix mmap size validation Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 073/228] media: ov772x: allow i2c controllers without I2C_FUNC_PROTOCOL_MANGLING Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 074/228] staging: mt7621-eth: Fix memory leak in mtk_add_mac() error path Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 075/228] drivers/tty: add error handling for pcmcia_loop_config Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 076/228] arm64: dts: renesas: salvator-common: Fix adv7482 decimal unit addresses Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 077/228] serial: pxa: Fix an error handling path in serial_pxa_probe() Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 078/228] staging: mt7621-dts: Fix remaining pcie warnings Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 079/228] media: tm6000: add error handling for dvb_register_adapter Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 080/228] ASoC: qdsp6: qdafe: fix some off by one bugs Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 081/228] ALSA: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge Greg Kroah-Hartman
2018-10-02 13:22 ` [PATCH 4.18 082/228] net: phy: xgmiitorgmii: Check read_status results Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 083/228] ath10k: protect ath10k_htt_rx_ring_free with rx_ring.lock Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 084/228] drm/sun4i: Enable DW HDMI PHY clock Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 085/228] net: phy: xgmiitorgmii: Check phy_driver ready before accessing Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 086/228] drm/sun4i: Fix releasing node when enumerating enpoints Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 087/228] ath10k: transmit queued frames after processing rx packets Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 088/228] mt76x2: fix mrr idx/count estimation in mt76x2_mac_fill_tx_status() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 089/228] rndis_wlan: potential buffer overflow in rndis_wlan_auth_indication() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 090/228] brcmsmac: fix wrap around in conversion from constant to s16 Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 091/228] bitfield: fix *_encode_bits() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 092/228] wlcore: Add missing PM call for wlcore_cmd_wait_for_event_or_timeout() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 093/228] drm/omap: gem: Fix mm_list locking Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 094/228] ARM: mvebu: declare asm symbols as character arrays in pmsu.c Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 095/228] RDMA/uverbs: Dont overwrite NULL pointer with ZERO_SIZE_PTR Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 096/228] Documentation/process: fix reST table border error Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 097/228] perf/hw_breakpoint: Split attribute parse and commit Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 098/228] arm: dts: mediatek: Add missing cooling device properties for CPUs Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 099/228] HID: hid-ntrig: add error handling for sysfs_create_group Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 100/228] HID: i2c-hid: Use devm to allocate i2c_hid struct Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 101/228] MIPS: boot: fix build rule of vmlinux.its.S Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 102/228] arm64: dts: renesas: Fix VSPD registers range Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 103/228] drm/v3d: Take a lock across GPU scheduler job creation and queuing Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 104/228] perf/x86/intel/lbr: Fix incomplete LBR call stack Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 105/228] scsi: bnx2i: add error handling for ioremap_nocache Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 106/228] iomap: complete partial direct I/O writes synchronously Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 107/228] scsi: hisi_sas: Fix the conflict between dev gone and host reset Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 108/228] spi: orion: fix CS GPIO handling again Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 109/228] scsi: megaraid_sas: Update controller info during resume Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 110/228] ASoC: Intel: bytcr_rt5640: Fix Acer Iconia 8 over-current detect threshold Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 111/228] ASoC: rt1305: Use ULL suffixes for 64-bit constants Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 112/228] ASoC: rsnd: SSI parent cares SWSP bit Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 113/228] EDAC, i7core: Fix memleaks and use-after-free on probe and remove Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 114/228] ASoC: dapm: Fix potential DAI widget pointer deref when linking DAIs Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 115/228] module: exclude SHN_UNDEF symbols from kallsyms api Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 116/228] gpio: Fix wrong rounding in gpio-menz127 Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 117/228] nfsd: fix corrupted reply to badly ordered compound Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 118/228] EDAC: Fix memleak in module init error path Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 119/228] EDAC, altera: Fix an error handling path in altr_s10_sdram_probe() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 120/228] staging: pi433: fix race condition in pi433_ioctl Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 121/228] ath10k: fix incorrect size of dma_free_coherent in ath10k_ce_alloc_src_ring_64 Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 122/228] ath10k: snoc: use correct bus-specific pointer in RX retry Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 123/228] fs/lock: skip lock owner pid translation in case we are in init_pid_ns Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 124/228] ath10k: fix memory leak of tpc_stats Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 125/228] Input: xen-kbdfront - fix multi-touch XenStore nodes locations Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 126/228] iio: 104-quad-8: Fix off-by-one error in register selection Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 127/228] drm/vc4: Add missing formats to vc4_format_mod_supported() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 128/228] ARM: dts: dra7: fix DCAN node addresses Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 129/228] drm/vc4: plane: Expand the lower bits by repeating the higher bits Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 130/228] perf tests: Fix indexing when invoking subtests Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 131/228] gpio: tegra: Fix tegra_gpio_irq_set_type() Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 132/228] floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 133/228] block: fix deadline elevator drain for zoned block devices Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 134/228] x86/mm: Expand static page table for fixmap space Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 135/228] tty: serial: lpuart: avoid leaking struct tty_struct Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 136/228] serial: imx: restore handshaking irq for imx1 Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 137/228] serial: mvebu-uart: Fix reporting of effective CSIZE to userspace Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 138/228] serial: cpm_uart: return immediately from console poll Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 139/228] intel_th: Fix device removal logic Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 140/228] intel_th: Fix resource handling for ACPI glue layer Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 141/228] spi: tegra20-slink: explicitly enable/disable clock Greg Kroah-Hartman
2018-10-02 13:23 ` [PATCH 4.18 142/228] spi: sh-msiof: Fix invalid SPI use during system suspend Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 143/228] spi: sh-msiof: Fix handling of write value for SISTR register Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 144/228] spi: rspi: Fix invalid SPI use during system suspend Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 145/228] spi: rspi: Fix interrupted DMA transfers Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 146/228] regulator: fix crash caused by null driver data Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 147/228] regulator: Fix do-nothing value for regulators without suspend state Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 148/228] USB: fix error handling in usb_driver_claim_interface() Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 149/228] USB: handle NULL config in usb_find_alt_setting() Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 150/228] usb: roles: Take care of driver module reference counting Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 151/228] usb: core: safely deal with the dynamic quirk lists Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 152/228] usb: musb: dsps: do not disable CPPI41 irq in driver teardown Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 153/228] USB: usbdevfs: sanitize flags more Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 154/228] USB: usbdevfs: restore warning for nonsensical flags Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 155/228] Revert "usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt()" Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 156/228] USB: remove LPM management from usb_driver_claim_interface() Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 157/228] uaccess: Fix is_source param for check_copy_size() in copy_to_iter_mcsafe() Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 158/228] ext2, dax: set ext2_dax_aops for dax files Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 159/228] filesystem-dax: Fix use of zero page Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 160/228] Input: elantech - enable middle button of touchpad on ThinkPad P72 Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 161/228] IB/srp: Avoid that sg_reset -d ${srp_device} triggers an infinite loop Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 162/228] IB/hfi1: Fix SL array bounds check Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 163/228] IB/hfi1: Invalid user input can result in crash Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 164/228] IB/hfi1: Fix context recovery when PBC has an UnsupportedVL Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 165/228] IB/hfi1: Fix destroy_qp hang after a link down Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 166/228] ACPI / hotplug / PCI: Dont scan for non-hotplug bridges if slot is not bridge Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 167/228] RDMA/uverbs: Atomically flush and mark closed the comp event queue Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 168/228] arm64: KVM: Tighten guest core register access from userspace Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 169/228] ARM: OMAP2+: Fix null hwmod for ti-sysc debug Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 170/228] ARM: OMAP2+: Fix module address for modules using mpu_rt_idx Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 171/228] bus: ti-sysc: Fix module register ioremap for larger offsets Greg Kroah-Hartman
2018-10-02 13:24 ` Greg Kroah-Hartman [this message]
2018-10-02 13:24 ` [PATCH 4.18 173/228] qed: Wait for MCP halt and resume commands to take place Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 174/228] qed: Prevent a possible deadlock during driver load and unload Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 175/228] qed: Avoid sending mailbox commands when MFW is not responsive Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 176/228] thermal: of-thermal: disable passive polling when thermal zone is disabled Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 177/228] isofs: reject hardware sector size > 2048 bytes Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 178/228] mmc: atmel-mci: fix bad logic of sg_copy_{from,to}_buffer conversion Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 179/228] mmc: android-goldfish: " Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 180/228] bus: ti-sysc: Fix no_console_suspend handling Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 181/228] ARM: dts: omap4-droid4: fix vibrations on Droid 4 Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 182/228] bpf, sockmap: fix sock_hash_alloc and reject zero-sized keys Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 183/228] bpf, sockmap: fix sock hash count in alloc_sock_hash_elem Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 184/228] tls: possible hang when do_tcp_sendpages hits sndbuf is full case Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 185/228] bpf: sockmap: write_space events need to be passed to TCP handler Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 186/228] drm/amdgpu: fix VM clearing for the root PD Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 187/228] drm/amdgpu: fix preamble handling Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 188/228] amdgpu: fix multi-process hang issue Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 189/228] net/ncsi: Fixup .dumpit message flags and ID check in Netlink handler Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 190/228] tcp_bbr: add bbr_check_probe_rtt_done() helper Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 191/228] tcp_bbr: in restart from idle, see if we should exit PROBE_RTT Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 192/228] net: hns: fix length and page_offset overflow when CONFIG_ARM64_64K_PAGES Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 193/228] net: hns: fix skb->truesize underestimation Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 194/228] net: hns3: fix page_offset overflow when CONFIG_ARM64_64K_PAGES Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 195/228] ice: Fix multiple static analyser warnings Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 196/228] ice: Report stats for allocated queues via ethtool stats Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 197/228] ice: Clean control queues only when they are initialized Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 198/228] ice: Fix bugs in control queue processing Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 199/228] ice: Use order_base_2 to calculate higher power of 2 Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 200/228] ice: Set VLAN flags correctly Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 201/228] tools: bpftool: return from do_event_pipe() on bad arguments Greg Kroah-Hartman
2018-10-02 13:24 ` [PATCH 4.18 202/228] ice: Fix a few null pointer dereference issues Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 203/228] ice: Fix potential return of uninitialized value Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 204/228] e1000: check on netif_running() before calling e1000_up() Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 205/228] e1000: ensure to free old tx/rx rings in set_ringparam() Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 206/228] ixgbe: fix driver behaviour after issuing VFLR Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 207/228] i40e: Fix for Tx timeouts when interface is brought up if DCB is enabled Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 208/228] i40e: fix condition of WARN_ONCE for stat strings Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 209/228] crypto: chtls - fix null dereference chtls_free_uld() Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 210/228] crypto: cavium/nitrox - fix for command corruption in queue full case with backlog submissions Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 211/228] hwmon: (ina2xx) fix sysfs shunt resistor read access Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 212/228] hwmon: (adt7475) Make adt7475_read_word() return errors Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 213/228] Revert "ARM: dts: imx7d: Invert legacy PCI irq mapping" Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 214/228] drm/amdgpu: Enable/disable gfx PG feature in rlc safe mode Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 215/228] drm/amdgpu: Update power state at the end of smu hw_init Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 216/228] ata: ftide010: Add a quirk for SQ201 Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 217/228] nvme-fcloop: Fix dropped LSs to removed target port Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 218/228] ARM: dts: omap4-droid4: Fix emmc errors seen on some devices Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 219/228] drm/amdgpu: Need to set moved to true when evict bo Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 220/228] arm/arm64: smccc-1.1: Make return values unsigned long Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 221/228] arm/arm64: smccc-1.1: Handle function result as parameters Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 222/228] i2c: i801: Allow ACPI AML access I/O ports not reserved for SMBus Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 223/228] clk: x86: Set default parent to 48Mhz Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 224/228] x86/pti: Fix section mismatch warning/error Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 225/228] KVM: PPC: Book3S HV: Fix guest r11 corruption with POWER9 TM workarounds Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 226/228] powerpc: fix csum_ipv6_magic() on little endian platforms Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 227/228] powerpc/pkeys: Fix reading of ibm, processor-storage-keys property Greg Kroah-Hartman
2018-10-02 13:25 ` [PATCH 4.18 228/228] powerpc/pseries: Fix unitialized timer reset on migration Greg Kroah-Hartman
2018-10-02 15:58 ` [PATCH 4.18 000/228] 4.18.12-stable review Holger Hoffstätte
2018-10-02 16:27   ` Greg Kroah-Hartman
2018-10-02 20:24 ` Shuah Khan
2018-10-02 21:43   ` Greg Kroah-Hartman
2018-10-03 12:59 ` Guenter Roeck
2018-10-03 16:25   ` Greg Kroah-Hartman
2018-10-03 17:24     ` Guenter Roeck
2018-10-03 17:53       ` Rob Herring
2018-10-03 18:08         ` Guenter Roeck
2018-10-07 14:19           ` Guenter Roeck
2018-10-08 17:48             ` Rob Herring
2018-10-08 19:59               ` Guenter Roeck
2018-10-03 19:58 ` Dan Rue
2018-10-03 23:05   ` Greg Kroah-Hartman

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20181002132510.289135971@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Ariel.Elior@cavium.com \
    --cc=Tomer.Tayar@cavium.com \
    --cc=alexander.levin@microsoft.com \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.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).