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, Evan Wang <xswang@marvell.com>,
	Ofer Heifetz <oferh@marvell.com>, Tejun Heo <tj@kernel.org>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.14 072/189] libahci: Allow drivers to override stop_engine
Date: Mon, 18 Jun 2018 10:12:48 +0200	[thread overview]
Message-ID: <20180618081212.182894206@linuxfoundation.org> (raw)
In-Reply-To: <20180618081209.254234434@linuxfoundation.org>

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

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

From: Evan Wang <xswang@marvell.com>

[ Upstream commit fa89f53bd7288d6aa7a982841119e7123faf5a53 ]

Marvell armada37xx, armada7k and armada8k share the same
AHCI sata controller IP, and currently there is an issue
(Errata Ref#226)that the SATA can not be detected via SATA
Port-MultiPlayer(PMP). After debugging, the reason is
found that the value of Port-x FIS-based Switching Control
(PxFBS@0x40) became wrong.
According to design, the bits[11:8, 0] of register PxFBS
are cleared when Port Command and Status (0x18) bit[0]
changes its value from 1 to 0, i.e. falling edge of Port
Command and Status bit[0] sends PULSE that resets PxFBS
bits[11:8; 0].
So it needs save the port PxFBS register before PxCMD
ST write and restore the port PxFBS register afterwards
in ahci_stop_engine().

This commit allows drivers to override ahci_stop_engine
behavior for use by the Marvell AHCI driver(and potentially
other drivers in the future).

Signed-off-by: Evan Wang <xswang@marvell.com>
Cc: Ofer Heifetz <oferh@marvell.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/ata/ahci.c          |    6 +++---
 drivers/ata/ahci.h          |    7 +++++++
 drivers/ata/ahci_qoriq.c    |    2 +-
 drivers/ata/ahci_xgene.c    |    4 ++--
 drivers/ata/libahci.c       |   20 ++++++++++++--------
 drivers/ata/sata_highbank.c |    2 +-
 6 files changed, 26 insertions(+), 15 deletions(-)

--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -686,7 +686,7 @@ static int ahci_vt8251_hardreset(struct
 
 	DPRINTK("ENTER\n");
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	rc = sata_link_hardreset(link, sata_ehc_deb_timing(&link->eh_context),
 				 deadline, &online, NULL);
@@ -712,7 +712,7 @@ static int ahci_p5wdh_hardreset(struct a
 	bool online;
 	int rc;
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	/* clear D2H reception area to properly wait for D2H FIS */
 	ata_tf_init(link->device, &tf);
@@ -776,7 +776,7 @@ static int ahci_avn_hardreset(struct ata
 
 	DPRINTK("ENTER\n");
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	for (i = 0; i < 2; i++) {
 		u16 val;
--- a/drivers/ata/ahci.h
+++ b/drivers/ata/ahci.h
@@ -361,6 +361,13 @@ struct ahci_host_priv {
 	 * be overridden anytime before the host is activated.
 	 */
 	void			(*start_engine)(struct ata_port *ap);
+	/*
+	 * Optional ahci_stop_engine override, if not set this gets set to the
+	 * default ahci_stop_engine during ahci_save_initial_config, this can
+	 * be overridden anytime before the host is activated.
+	 */
+	int			(*stop_engine)(struct ata_port *ap);
+
 	irqreturn_t 		(*irq_handler)(int irq, void *dev_instance);
 
 	/* only required for per-port MSI(-X) support */
--- a/drivers/ata/ahci_qoriq.c
+++ b/drivers/ata/ahci_qoriq.c
@@ -94,7 +94,7 @@ static int ahci_qoriq_hardreset(struct a
 
 	DPRINTK("ENTER\n");
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	/*
 	 * There is a errata on ls1021a Rev1.0 and Rev2.0 which is:
--- a/drivers/ata/ahci_xgene.c
+++ b/drivers/ata/ahci_xgene.c
@@ -165,7 +165,7 @@ static int xgene_ahci_restart_engine(str
 				    PORT_CMD_ISSUE, 0x0, 1, 100))
 		  return -EBUSY;
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 	ahci_start_fis_rx(ap);
 
 	/*
@@ -421,7 +421,7 @@ static int xgene_ahci_hardreset(struct a
 	portrxfis_saved = readl(port_mmio + PORT_FIS_ADDR);
 	portrxfishi_saved = readl(port_mmio + PORT_FIS_ADDR_HI);
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	rc = xgene_ahci_do_hardreset(link, deadline, &online);
 
--- a/drivers/ata/libahci.c
+++ b/drivers/ata/libahci.c
@@ -560,6 +560,9 @@ void ahci_save_initial_config(struct dev
 	if (!hpriv->start_engine)
 		hpriv->start_engine = ahci_start_engine;
 
+	if (!hpriv->stop_engine)
+		hpriv->stop_engine = ahci_stop_engine;
+
 	if (!hpriv->irq_handler)
 		hpriv->irq_handler = ahci_single_level_irq_intr;
 }
@@ -887,9 +890,10 @@ static void ahci_start_port(struct ata_p
 static int ahci_deinit_port(struct ata_port *ap, const char **emsg)
 {
 	int rc;
+	struct ahci_host_priv *hpriv = ap->host->private_data;
 
 	/* disable DMA */
-	rc = ahci_stop_engine(ap);
+	rc = hpriv->stop_engine(ap);
 	if (rc) {
 		*emsg = "failed to stop engine";
 		return rc;
@@ -1299,7 +1303,7 @@ int ahci_kick_engine(struct ata_port *ap
 	int busy, rc;
 
 	/* stop engine */
-	rc = ahci_stop_engine(ap);
+	rc = hpriv->stop_engine(ap);
 	if (rc)
 		goto out_restart;
 
@@ -1538,7 +1542,7 @@ int ahci_do_hardreset(struct ata_link *l
 
 	DPRINTK("ENTER\n");
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	/* clear D2H reception area to properly wait for D2H FIS */
 	ata_tf_init(link->device, &tf);
@@ -2064,14 +2068,14 @@ void ahci_error_handler(struct ata_port
 
 	if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
 		/* restart engine */
-		ahci_stop_engine(ap);
+		hpriv->stop_engine(ap);
 		hpriv->start_engine(ap);
 	}
 
 	sata_pmp_error_handler(ap);
 
 	if (!ata_dev_enabled(ap->link.device))
-		ahci_stop_engine(ap);
+		hpriv->stop_engine(ap);
 }
 EXPORT_SYMBOL_GPL(ahci_error_handler);
 
@@ -2118,7 +2122,7 @@ static void ahci_set_aggressive_devslp(s
 		return;
 
 	/* set DITO, MDAT, DETO and enable DevSlp, need to stop engine first */
-	rc = ahci_stop_engine(ap);
+	rc = hpriv->stop_engine(ap);
 	if (rc)
 		return;
 
@@ -2178,7 +2182,7 @@ static void ahci_enable_fbs(struct ata_p
 		return;
 	}
 
-	rc = ahci_stop_engine(ap);
+	rc = hpriv->stop_engine(ap);
 	if (rc)
 		return;
 
@@ -2211,7 +2215,7 @@ static void ahci_disable_fbs(struct ata_
 		return;
 	}
 
-	rc = ahci_stop_engine(ap);
+	rc = hpriv->stop_engine(ap);
 	if (rc)
 		return;
 
--- a/drivers/ata/sata_highbank.c
+++ b/drivers/ata/sata_highbank.c
@@ -410,7 +410,7 @@ static int ahci_highbank_hardreset(struc
 	int rc;
 	int retry = 100;
 
-	ahci_stop_engine(ap);
+	hpriv->stop_engine(ap);
 
 	/* clear D2H reception area to properly wait for D2H FIS */
 	ata_tf_init(link->device, &tf);

  parent reply	other threads:[~2018-06-18  8:32 UTC|newest]

Thread overview: 181+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-18  8:11 [PATCH 4.14 000/189] 4.14.51-stable review Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 001/189] clocksource/drivers/imx-tpm: Correct some registers operation flow Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 002/189] Input: synaptics-rmi4 - fix an unchecked out of memory error path Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 003/189] KVM: X86: fix incorrect reference of trace_kvm_pi_irte_update Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 004/189] x86: Add check for APIC access address for vmentry of L2 guests Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 005/189] MIPS: io: Prevent compiler reordering writeX() Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 006/189] nfp: ignore signals when communicating with management FW Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 008/189] fsnotify: fix ignore mask logic in send_to_group() Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 009/189] MIPS: io: Add barrier after register read in readX() Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 010/189] s390/smsgiucv: disable SMSG on module unload Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 011/189] isofs: fix potential memory leak in mount option parsing Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 012/189] MIPS: dts: Boston: Fix PCI bus dtc warnings: Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 013/189] spi: sh-msiof: Fix bit field overflow writes to TSCR/RSCR Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 014/189] doc: Add vendor prefix for Kieback & Peter GmbH Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 015/189] dt-bindings: pinctrl: sunxi: Fix reference to driver Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 016/189] dt-bindings: serial: sh-sci: Add support for r8a77965 (H)SCIF Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 017/189] dt-bindings: dmaengine: rcar-dmac: document R8A77965 support Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 018/189] clk: honor CLK_MUX_ROUND_CLOSEST in generic clk mux Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 019/189] ASoC: rt5514: Add the missing register in the readable table Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 020/189] eCryptfs: dont pass up plaintext names when using filename encryption Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 021/189] soc: bcm: raspberrypi-power: Fix use of __packed Greg Kroah-Hartman
2018-06-18  8:11 ` [PATCH 4.14 023/189] PCI: kirin: Fix reset gpio name Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 024/189] ASoC: topology: Fix bugs of freeing soc topology Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 025/189] xen: xenbus_dev_frontend: Really return response string Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 026/189] ASoC: topology: Check widget kcontrols before deref Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 027/189] spi: cadence: Add usleep_range() for cdns_spi_fill_tx_fifo() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 028/189] blkcg: dont hold blkcg lock when deactivating policy Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 029/189] tipc: fix infinite loop when dumping link monitor summary Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 030/189] scsi: iscsi: respond to netlink with unicast when appropriate Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 031/189] scsi: megaraid_sas: Do not log an error if FW successfully initializes Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 032/189] scsi: target: fix crash with iscsi target and dvd Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 033/189] netfilter: nf_tables: NAT chain and extensions require NF_TABLES Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 034/189] netfilter: nf_tables: fix out-of-bounds in nft_chain_commit_update Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 035/189] ASoC: msm8916-wcd-analog: use threaded context for mbhc events Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 036/189] drm/msm: Fix possible null dereference on failure of get_pages() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 037/189] drm/msm/dsi: use correct enum in dsi_get_cmd_fmt Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 038/189] drm/msm: dont deref error pointer in the msm_fbdev_create error path Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 039/189] blkcg: init root blkcg_gq under lock Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 040/189] net: hns: Avoid action name truncation Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 041/189] vfs: Undo an overly zealous MS_RDONLY -> SB_RDONLY conversion Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 042/189] parisc: time: Convert read_persistent_clock() to read_persistent_clock64() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 043/189] scsi: storvsc: Set up correct queue depth values for IDE devices Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 044/189] scsi: isci: Fix infinite loop in while loop Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 045/189] mm, pagemap: fix swap offset value for PMD migration entry Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 046/189] proc: revalidate kernel thread inodes to root:root Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 047/189] kexec_file: do not add extra alignment to efi memmap Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 048/189] mm: memcg: add __GFP_NOWARN in __memcg_schedule_kmem_cache_create() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 049/189] usb: typec: ucsi: fix tracepoint related build error Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 050/189] s390/qeth: use Read device to query hypervisor for MAC Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 051/189] ACPI / PM: Blacklist Low Power S0 Idle _DSM for ThinkPad X1 Tablet(2016) Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 052/189] dt-bindings: meson-uart: DT fix s/clocks-names/clock-names/ Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 053/189] powerpc/powernv/memtrace: Let the arch hotunplug code flush cache Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 054/189] net: phy: marvell: clear wol event before setting it Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 055/189] ARM: dts: da850: fix W=1 warnings with pinmux node Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 056/189] ACPI / watchdog: Prefer iTCO_wdt on Lenovo Z50-70 Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 057/189] drm/amdkfd: fix clock counter retrieval for node without GPU Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 058/189] thermal: int3403_thermal: Fix NULL pointer deref on module load / probe Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 059/189] net: ethtool: Add missing kernel doc for FEC parameters Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 060/189] arm64: ptrace: remove addr_limit manipulation Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 061/189] HID: lenovo: Add support for IBM/Lenovo Scrollpoint mice Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 062/189] HID: wacom: Release device resource data obtained by devres_alloc() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 063/189] selftests: ftrace: Add a testcase for multiple actions on trigger Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 065/189] perf/x86/intel: Dont enable freeze-on-smi for PerfMon V1 Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 066/189] remoteproc: qcom: Fix potential device node leaks Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 067/189] rpmsg: added MODULE_ALIAS for rpmsg_char Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 068/189] HID: intel-ish-hid: use put_device() instead of kfree() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 069/189] blk-mq: fix sysfs inflight counter Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 070/189] arm64: fix possible spectre-v1 in ptrace_hbp_get_event() Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 071/189] KVM: arm/arm64: vgic: fix possible spectre-v1 in vgic_mmio_read_apr() Greg Kroah-Hartman
2018-06-18  8:12 ` Greg Kroah-Hartman [this message]
2018-06-18  8:12 ` [PATCH 4.14 073/189] ata: ahci: mvebu: override ahci_stop_engine for mvebu AHCI Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 074/189] x86/cpu/intel: Add missing TLB cpuid values Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 076/189] i2c: sprd: Prevent i2c accesses after suspend is called Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 077/189] i2c: sprd: Fix the i2c count issue Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 078/189] tipc: fix bug in function tipc_nl_node_dump_monitor Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 079/189] nvme: depend on INFINIBAND_ADDR_TRANS Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 080/189] nvmet-rdma: " Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 081/189] ib_srpt: " Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 082/189] ib_srp: " Greg Kroah-Hartman
2018-06-18  8:12 ` [PATCH 4.14 083/189] IB: make INFINIBAND_ADDR_TRANS configurable Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 084/189] IB/uverbs: Fix validating mandatory attributes Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 085/189] RDMA/cma: Fix use after destroy access to net namespace for IPoIB Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 086/189] RDMA/iwpm: fix memory leak on map_info Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 087/189] IB/rxe: add RXE_START_MASK for rxe_opcode IB_OPCODE_RC_SEND_ONLY_INV Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 088/189] IB/rxe: avoid double kfree_skb Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 089/189] <linux/stringhash.h>: fix end_name_hash() for 64bit long Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 091/189] ARM: davinci: board-da830-evm: fix GPIO lookup for MMC/SD Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 092/189] ARM: davinci: board-da850-evm: " Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 093/189] ARM: davinci: board-omapl138-hawk: fix GPIO numbers for MMC/SD lookup Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 094/189] ARM: davinci: board-dm355-evm: fix broken networking Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 095/189] dt-bindings: panel: lvds: Fix path to display timing bindings Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 096/189] ARM: OMAP2+: powerdomain: use raw_smp_processor_id() for trace Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 097/189] ARM: dts: logicpd-som-lv: Fix WL127x Startup Issues Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 098/189] ARM: dts: logicpd-som-lv: Fix Audio Mute Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 099/189] Input: atmel_mxt_ts - fix the firmware update Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 100/189] hexagon: add memset_io() helper Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 101/189] hexagon: export csum_partial_copy_nocheck Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 102/189] scsi: vmw-pvscsi: return DID_BUS_BUSY for adapter-initated aborts Greg Kroah-Hartman
2018-06-18 18:32   ` Jim Gill
2018-06-18  8:13 ` [PATCH 4.14 103/189] bpf, x64: fix memleak when not converging after image Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 104/189] parisc: drivers.c: Fix section mismatches Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 105/189] stop_machine, sched: Fix migrate_swap() vs. active_balance() deadlock Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 106/189] kthread, sched/wait: Fix kthread_parkme() wait-loop Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 107/189] arm64: tegra: Make BCM89610 PHY interrupt as active low Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 108/189] iommu/vt-d: fix shift-out-of-bounds in bug checking Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 109/189] nvme: fix potential memory leak in option parsing Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 110/189] nvme: Set integrity flag for user passthrough commands Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 111/189] ARM: OMAP1: ams-delta: fix deferred_fiq handler Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 112/189] smc: fix sendpage() call Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 113/189] IB/hfi1 Use correct type for num_user_context Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 114/189] IB/hfi1: Fix memory leak in exception path in get_irq_affinity() Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 115/189] RDMA/cma: Do not query GID during QP state transition to RTR Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 116/189] spi: bcm2835aux: ensure interrupts are enabled for shared handler Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 117/189] sched/core: Introduce set_special_state() Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 118/189] sh: fix build failure for J2 cpu with SMP disabled Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 119/189] tee: check shm references are consistent in offset/size Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 120/189] powerpc/trace/syscalls: Update syscall name matching logic Greg Kroah-Hartman
2018-06-19  2:43   ` Naveen N. Rao
2018-06-20 18:48     ` Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 121/189] powerpc/trace/syscalls: Update syscall name matching logic to account for ppc_ prefix Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 122/189] mac80211: Adjust SAE authentication timeout Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 123/189] drm/omap: silence unititialized variable warning Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 124/189] drm/omap: fix uninitialized ret variable Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 125/189] drm/omap: fix possible NULL ref issue in tiler_reserve_2d Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 126/189] drm/omap: check return value from soc_device_match Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 127/189] drm/omap: handle alloc failures in omap_connector Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 130/189] mac80211: use timeout from the AddBA response instead of the request Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 131/189] x86/xen: Reset VCPU0 info pointer after shared_info remap Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 132/189] net: aquantia: driver should correctly declare vlan_features bits Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 133/189] can: dev: increase bus-off message severity Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 134/189] arm64: Add MIDR encoding for NVIDIA CPUs Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 135/189] cifs: smb2ops: Fix listxattr() when there are no EAs Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 137/189] tipc: eliminate KMSAN uninit-value in strcmp complaint Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 138/189] qed: Fix l2 initializations over iWARP personality Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 139/189] qede: Fix gfp flags sent to rdma event node allocation Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 140/189] rxrpc: Fix error reception on AF_INET6 sockets Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 141/189] rxrpc: Fix the min security level for kernel calls Greg Kroah-Hartman
2018-06-18  8:13 ` [PATCH 4.14 143/189] x86: Delay skip of emulated hypercall instruction Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 144/189] ixgbe: return error on unsupported SFP module when resetting Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 145/189] net sched actions: fix invalid pointer dereferencing if skbedit flags missing Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 146/189] init: fix false positives in W+X checking Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 147/189] proc/kcore: dont bounds check against address 0 Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 148/189] ocfs2: take inode cluster lock before moving reflinked inode from orphan dir Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 149/189] kprobes/x86: Prohibit probing on exception masking instructions Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 150/189] uprobes/x86: Prohibit probing on MOV SS instruction Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 151/189] objtool, kprobes/x86: Sync the latest <asm/insn.h> header with tools/objtool/arch/x86/include/asm/insn.h Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 152/189] x86/pkeys/selftests: Adjust the self-test to fresh distros that export the pkeys ABI Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 153/189] x86/mpx/selftests: Adjust the self-test to fresh distros that export the MPX ABI Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 154/189] x86/selftests: Add mov_to_ss test Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 155/189] x86/pkeys/selftests: Give better unexpected fault error messages Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 156/189] x86/pkeys/selftests: Stop using assert() Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 157/189] x86/pkeys/selftests: Remove dead debugging code, fix dprint_in_signal Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 158/189] x86/pkeys/selftests: Allow faults on unknown keys Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 159/189] x86/pkeys/selftests: Factor out "instruction page" Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 160/189] x86/pkeys/selftests: Add PROT_EXEC test Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 161/189] x86/pkeys/selftests: Fix pkey exhaustion test off-by-one Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 162/189] x86/pkeys/selftests: Fix pointer math Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 163/189] x86/pkeys/selftests: Save off prot for allocations Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 164/189] x86/pkeys/selftests: Add a test for pkey 0 Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 165/189] mtd: Fix comparison in map_word_andequal() Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 166/189] afs: Fix the non-encryption of calls Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 168/189] ARM: keystone: fix platform_domain_notifier array overrun Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 169/189] i2c: pmcmsp: return message count on master_xfer success Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 170/189] i2c: pmcmsp: fix error return from master_xfer Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 171/189] i2c: viperboard: return message count on master_xfer success Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 172/189] ARM: davinci: dm646x: fix timer interrupt generation Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 173/189] ARM: davinci: board-dm646x-evm: pass correct I2C adapter id for VPIF Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 174/189] ARM: davinci: board-dm646x-evm: set VPIF capture card name Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 175/189] clk: imx6ull: use OSC clock during AXI rate change Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 176/189] locking/rwsem: Add a new RWSEM_ANONYMOUSLY_OWNED flag Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 177/189] locking/percpu-rwsem: Annotate rwsem ownership transfer by setting RWSEM_OWNER_UNKNOWN Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 178/189] drm/dumb-buffers: Integer overflow in drm_mode_create_ioctl() Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 181/189] parisc: Move setup_profiling_timer() out of init section Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 182/189] efi/libstub/arm64: Handle randomized TEXT_OFFSET Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 185/189] ARM: kexec: fix kdump register saving on panic() Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 186/189] Revert "Btrfs: fix scrub to repair raid6 corruption" Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 187/189] Btrfs: fix scrub to repair raid6 corruption Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 188/189] Btrfs: make raid6 rebuild retry more Greg Kroah-Hartman
2018-06-18  8:14 ` [PATCH 4.14 189/189] tcp: do not overshoot window_clamp in tcp_rcv_space_adjust() Greg Kroah-Hartman
2018-06-18 18:29 ` [PATCH 4.14 000/189] 4.14.51-stable review Guenter Roeck
2018-06-19  5:53 ` Naresh Kamboju

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=20180618081212.182894206@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.levin@microsoft.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oferh@marvell.com \
    --cc=stable@vger.kernel.org \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=tj@kernel.org \
    --cc=xswang@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).