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, Doug Berger <opendmb@gmail.com>,
	Florian Fainelli <f.fainelli@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 039/321] net: bcmgenet: use RGMII loopback for MAC reset
Date: Tue,  3 Dec 2019 23:31:45 +0100	[thread overview]
Message-ID: <20191203223429.145573653@linuxfoundation.org> (raw)
In-Reply-To: <20191203223427.103571230@linuxfoundation.org>

From: Doug Berger <opendmb@gmail.com>

[ Upstream commit 3a55402c93877d291b0a612d25edb03d1b4b93ac ]

As noted in commit 28c2d1a7a0bf ("net: bcmgenet: enable loopback
during UniMAC sw_reset") the UniMAC must be clocked while sw_reset
is asserted for its state machines to reset cleanly.

The transmit and receive clocks used by the UniMAC are derived from
the signals used on its PHY interface. The bcmgenet MAC can be
configured to work with different PHY interfaces including MII,
GMII, RGMII, and Reverse MII on internal and external interfaces.
Unfortunately for the UniMAC, when configured for MII the Tx clock
is always driven from the PHY which places it outside of the direct
control of the MAC.

The earlier commit enabled a local loopback mode within the UniMAC
so that the receive clock would be derived from the transmit clock
which addressed the observed issue with an external GPHY disabling
it's Rx clock. However, when a Tx clock is not available this
loopback is insufficient.

This commit implements a workaround that leverages the fact that
the MAC can reliably generate all of its necessary clocking by
enterring the external GPHY RGMII interface mode with the UniMAC in
local loopback during the sw_reset interval. Unfortunately, this
has the undesirable side efect of the RGMII GTXCLK signal being
driven during the same window.

In most configurations this is a benign side effect as the signal
is either not routed to a pin or is already expected to drive the
pin. The one exception is when an external MII PHY is expected to
drive the same pin with its TX_CLK output creating output driver
contention.

This commit exploits the IEEE 802.3 clause 22 standard defined
isolate mode to force an external MII PHY to present a high
impedance on its TX_CLK output during the window to prevent any
contention at the pin.

The MII interface is used internally with the 40nm internal EPHY
which agressively disables its clocks for power savings leading to
incomplete resets of the UniMAC and many instabilities observed
over the years. The workaround of this commit is expected to put
an end to those problems.

Fixes: 1c1008c793fa ("net: bcmgenet: add main driver file")
Signed-off-by: Doug Berger <opendmb@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 .../net/ethernet/broadcom/genet/bcmgenet.c    |  2 --
 drivers/net/ethernet/broadcom/genet/bcmmii.c  | 33 +++++++++++++++++++
 2 files changed, 33 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/genet/bcmgenet.c b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
index 338d223804343..6f7278d2ce4f2 100644
--- a/drivers/net/ethernet/broadcom/genet/bcmgenet.c
+++ b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
@@ -1998,8 +1998,6 @@ static void reset_umac(struct bcmgenet_priv *priv)
 
 	/* issue soft reset with (rg)mii loopback to ensure a stable rxclk */
 	bcmgenet_umac_writel(priv, CMD_SW_RESET | CMD_LCL_LOOP_EN, UMAC_CMD);
-	udelay(2);
-	bcmgenet_umac_writel(priv, 0, UMAC_CMD);
 }
 
 static void bcmgenet_intr_disable(struct bcmgenet_priv *priv)
diff --git a/drivers/net/ethernet/broadcom/genet/bcmmii.c b/drivers/net/ethernet/broadcom/genet/bcmmii.c
index b0592fd4135b3..a5049d637791d 100644
--- a/drivers/net/ethernet/broadcom/genet/bcmmii.c
+++ b/drivers/net/ethernet/broadcom/genet/bcmmii.c
@@ -184,8 +184,38 @@ int bcmgenet_mii_config(struct net_device *dev, bool init)
 	const char *phy_name = NULL;
 	u32 id_mode_dis = 0;
 	u32 port_ctrl;
+	int bmcr = -1;
+	int ret;
 	u32 reg;
 
+	/* MAC clocking workaround during reset of umac state machines */
+	reg = bcmgenet_umac_readl(priv, UMAC_CMD);
+	if (reg & CMD_SW_RESET) {
+		/* An MII PHY must be isolated to prevent TXC contention */
+		if (priv->phy_interface == PHY_INTERFACE_MODE_MII) {
+			ret = phy_read(phydev, MII_BMCR);
+			if (ret >= 0) {
+				bmcr = ret;
+				ret = phy_write(phydev, MII_BMCR,
+						bmcr | BMCR_ISOLATE);
+			}
+			if (ret) {
+				netdev_err(dev, "failed to isolate PHY\n");
+				return ret;
+			}
+		}
+		/* Switch MAC clocking to RGMII generated clock */
+		bcmgenet_sys_writel(priv, PORT_MODE_EXT_GPHY, SYS_PORT_CTRL);
+		/* Ensure 5 clks with Rx disabled
+		 * followed by 5 clks with Reset asserted
+		 */
+		udelay(4);
+		reg &= ~(CMD_SW_RESET | CMD_LCL_LOOP_EN);
+		bcmgenet_umac_writel(priv, reg, UMAC_CMD);
+		/* Ensure 5 more clocks before Rx is enabled */
+		udelay(2);
+	}
+
 	priv->ext_phy = !priv->internal_phy &&
 			(priv->phy_interface != PHY_INTERFACE_MODE_MOCA);
 
@@ -217,6 +247,9 @@ int bcmgenet_mii_config(struct net_device *dev, bool init)
 		phydev->supported &= PHY_BASIC_FEATURES;
 		bcmgenet_sys_writel(priv,
 				    PORT_MODE_EXT_EPHY, SYS_PORT_CTRL);
+		/* Restore the MII PHY after isolation */
+		if (bmcr >= 0)
+			phy_write(phydev, MII_BMCR, bmcr);
 		break;
 
 	case PHY_INTERFACE_MODE_REVMII:
-- 
2.20.1




  parent reply	other threads:[~2019-12-03 22:46 UTC|newest]

Thread overview: 353+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-03 22:31 [PATCH 4.19 000/321] 4.19.88-stable review Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 001/321] clk: meson: gxbb: let sar_adc_clk_div set the parent clock rate Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 002/321] clocksource/drivers/mediatek: Fix error handling Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 003/321] ASoC: msm8916-wcd-analog: Fix RX1 selection in RDAC2 MUX Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 004/321] ASoC: compress: fix unsigned integer overflow check Greg Kroah-Hartman
2019-12-04  9:33   ` Pavel Machek
2019-12-03 22:31 ` [PATCH 4.19 005/321] reset: Fix memory leak in reset_control_array_put() Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 006/321] clk: samsung: exynos5433: Fix error paths Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 007/321] ASoC: kirkwood: fix external clock probe defer Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 008/321] ASoC: kirkwood: fix device remove ordering Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 009/321] clk: samsung: exynos5420: Preserve PLL configuration during suspend/resume Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 010/321] pinctrl: cherryview: Allocate IRQ chip dynamic Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 011/321] ARM: dts: imx6qdl-sabreauto: Fix storm of accelerometer interrupts Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 012/321] reset: fix reset_control_ops kerneldoc comment Greg Kroah-Hartman
2019-12-04  9:38   ` Pavel Machek
2019-12-03 22:31 ` [PATCH 4.19 013/321] clk: at91: avoid sleeping early Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 014/321] clk: sunxi: Fix operator precedence in sunxi_divs_clk_setup Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 015/321] clk: sunxi-ng: a80: fix the zeroing of bits 16 and 18 Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 016/321] ARM: dts: sun8i-a83t-tbs-a711: Fix WiFi resume from suspend Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 017/321] samples/bpf: fix build by setting HAVE_ATTR_TEST to zero Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 018/321] powerpc/bpf: Fix tail call implementation Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 019/321] idr: Fix integer overflow in idr_for_each_entry Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 020/321] idr: Fix idr_alloc_u32 on 32-bit systems Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 021/321] x86/resctrl: Prevent NULL pointer dereference when reading mondata Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 022/321] clk: ti: dra7-atl-clock: Remove ti_clk_add_alias call Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 023/321] clk: ti: clkctrl: Fix failed to enable error with double udelay timeout Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 024/321] net: fec: add missed clk_disable_unprepare in remove Greg Kroah-Hartman
2019-12-04  5:57   ` Nobuhiro Iwamatsu
2019-12-04  7:14     ` Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 025/321] bridge: ebtables: dont crash when using dnat target in output chains Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 026/321] can: peak_usb: report bus recovery as well Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 027/321] can: c_can: D_CAN: c_can_chip_config(): perform a sofware reset on open Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 028/321] can: rx-offload: can_rx_offload_queue_tail(): fix error handling, avoid skb mem leak Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 029/321] can: rx-offload: can_rx_offload_offload_one(): do not increase the skb_queue beyond skb_queue_len_max Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 030/321] can: rx-offload: can_rx_offload_offload_one(): increment rx_fifo_errors on queue overflow or OOM Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 031/321] can: rx-offload: can_rx_offload_offload_one(): use ERR_PTR() to propagate error value in case of errors Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 032/321] can: rx-offload: can_rx_offload_irq_offload_timestamp(): continue on error Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 033/321] can: rx-offload: can_rx_offload_irq_offload_fifo(): " Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 034/321] can: flexcan: increase error counters if skb enqueueing via can_rx_offload_queue_sorted() fails Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 035/321] can: mcp251x: mcp251x_restart_work_handler(): Fix potential force_quit race condition Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 036/321] watchdog: meson: Fix the wrong value of left time Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 037/321] ASoC: stm32: sai: add restriction on mmap support Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 038/321] scripts/gdb: fix debugging modules compiled with hot/cold partitioning Greg Kroah-Hartman
2019-12-03 22:31 ` Greg Kroah-Hartman [this message]
2019-12-03 22:31 ` [PATCH 4.19 040/321] net: bcmgenet: reapply manual settings to the PHY Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 041/321] net: mscc: ocelot: fix __ocelot_rmw_ix prototype Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 042/321] ceph: return -EINVAL if given fsc mount option on kernel w/o support Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 043/321] net/fq_impl: Switch to kvmalloc() for memory allocation Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 044/321] mac80211: fix station inactive_time shortly after boot Greg Kroah-Hartman
2019-12-04 11:56   ` Pavel Machek
2019-12-04 12:05     ` Johannes Berg
2019-12-04 12:26       ` Ahmed Zaki
2019-12-03 22:31 ` [PATCH 4.19 045/321] block: drbd: remove a stray unlock in __drbd_send_protocol() Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 046/321] pwm: bcm-iproc: Prevent unloading the driver module while in use Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 047/321] scsi: target/tcmu: Fix queue_cmd_ring() declaration Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 048/321] scsi: lpfc: Fix kernel Oops due to null pring pointers Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 049/321] scsi: lpfc: Fix dif and first burst use in write commands Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 050/321] arm64: dts: marvell: armada-37xx: Enable emmc on espressobin Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 051/321] ARM: dts: Fix up SQ201 flash access Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 052/321] tracing: Lock event_mutex before synth_event_mutex Greg Kroah-Hartman
2019-12-03 22:31 ` [PATCH 4.19 053/321] ARM: debug-imx: only define DEBUG_IMX_UART_PORT if needed Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 054/321] ARM: dts: imx51: Fix memory node duplication Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 055/321] ARM: dts: imx53: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 056/321] ARM: dts: imx31: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 057/321] ARM: dts: imx35: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 058/321] ARM: dts: imx7: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 059/321] ARM: dts: imx6ul: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 060/321] ARM: dts: imx6sx: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 061/321] ARM: dts: imx6sl: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 062/321] ARM: dts: imx50: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 063/321] ARM: dts: imx23: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 064/321] ARM: dts: imx1: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 065/321] ARM: dts: imx27: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 066/321] ARM: dts: imx25: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 067/321] ARM: dts: imx53-voipac-dmm-668: " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 068/321] parisc: Fix serio address output Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 069/321] parisc: Fix HP SDC hpa " Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 070/321] ARM: dts: Fix hsi gdd range for omap4 Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 071/321] arm64: mm: Prevent mismatched 52-bit VA support Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 072/321] arm64: smp: Handle errors reported by the firmware Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 073/321] bus: ti-sysc: Check for no-reset and no-idle flags at the child level Greg Kroah-Hartman
2019-12-04 13:00   ` Pavel Machek
2019-12-06 15:47     ` Tony Lindgren
2019-12-03 22:32 ` [PATCH 4.19 074/321] platform/x86: mlx-platform: Fix LED configuration Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 075/321] ARM: OMAP1: fix USB configuration for device-only setups Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 076/321] RDMA/hns: Fix the bug while use multi-hop of pbl Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 077/321] arm64: preempt: Fix big-endian when checking preempt count in assembly Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 078/321] RDMA/vmw_pvrdma: Use atomic memory allocation in create AH Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 079/321] PM / AVS: SmartReflex: NULL check before some freeing functions is not needed Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 080/321] xfs: zero length symlinks are not valid Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 081/321] ARM: ks8695: fix section mismatch warning Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 082/321] ACPI / LPSS: Ignore acpi_device_fix_up_power() return value Greg Kroah-Hartman
2019-12-04 21:27   ` Pavel Machek
2019-12-04 23:02     ` Rafael J. Wysocki
2019-12-05 10:53     ` Hans de Goede
2019-12-03 22:32 ` [PATCH 4.19 083/321] scsi: lpfc: Enable Management features for IF_TYPE=6 Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 084/321] scsi: qla2xxx: Fix NPIV handling for FC-NVMe Greg Kroah-Hartman
2019-12-04 21:48   ` Pavel Machek
2019-12-05 16:47     ` Himanshu Madhani
2019-12-03 22:32 ` [PATCH 4.19 085/321] scsi: qla2xxx: Fix for FC-NVMe discovery for NPIV port Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 086/321] nvme: provide fallback for discard alloc failure Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 087/321] s390/zcrypt: make sysfs reset attribute trigger queue reset Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 088/321] crypto: user - support incremental algorithm dumps Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 089/321] arm64: dts: renesas: draak: Fix CVBS input Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 090/321] mwifiex: fix potential NULL dereference and use after free Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 091/321] mwifiex: debugfs: correct histogram spacing, formatting Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 092/321] brcmfmac: set F2 watermark to 256 for 4373 Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 093/321] brcmfmac: set SDIO F1 MesBusyCtrl for CYW4373 Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 094/321] rtl818x: fix potential use after free Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 095/321] bcache: do not check if debug dentry is ERR or NULL explicitly on remove Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 096/321] bcache: do not mark writeback_running too early Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 097/321] xfs: require both realtime inodes to mount Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 098/321] nvme: fix kernel paging oops Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 099/321] ubifs: Fix default compression selection in ubifs Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 100/321] ubi: Put MTD device after it is not used Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 101/321] ubi: Do not drop UBI device reference before using Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 102/321] microblaze: adjust the help to the real behavior Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 103/321] microblaze: move "... is ready" messages to arch/microblaze/Makefile Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 104/321] microblaze: fix multiple bugs in arch/microblaze/boot/Makefile Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 105/321] iwlwifi: move iwl_nvm_check_version() into dvm Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 106/321] iwlwifi: mvm: force TCM re-evaluation on TCM resume Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 107/321] iwlwifi: pcie: fix erroneous print Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 108/321] iwlwifi: pcie: set cmd_len in the correct place Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 109/321] gpio: pca953x: Fix AI overflow on PCAL6524 Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 110/321] gpiolib: Fix return value of gpio_to_desc() stub if !GPIOLIB Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 111/321] kvm: vmx: Set IA32_TSC_AUX for legacy mode guests Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 112/321] crypto/chelsio/chtls: listen fails with multiadapt Greg Kroah-Hartman
2019-12-03 22:32 ` [PATCH 4.19 113/321] VSOCK: bind to random port for VMADDR_PORT_ANY Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 114/321] mmc: meson-gx: make sure the descriptor is stopped on errors Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 115/321] mtd: rawnand: sunxi: Write pageprog related opcodes to WCMD_SET Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 116/321] usb: ehci-omap: Fix deferred probe for phy handling Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 117/321] btrfs: Check for missing device before bio submission in btrfs_map_bio Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 118/321] btrfs: fix ncopies raid_attr for RAID56 Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 119/321] btrfs: dev-replace: set result code of cancel by status of scrub Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 120/321] Btrfs: allow clear_extent_dirty() to receive a cached extent state record Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 121/321] btrfs: only track ref_heads in delayed_ref_updates Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 122/321] serial: sh-sci: Fix crash in rx_timer_fn() on PIO fallback Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 123/321] HID: intel-ish-hid: fixes incorrect error handling Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 124/321] gpio: raspberrypi-exp: decrease refcount on firmware dt node Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 125/321] serial: 8250: Rate limit serial port rx interrupts during input overruns Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 126/321] kprobes/x86/xen: blacklist non-attachable xen interrupt functions Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 127/321] xen/pciback: Check dev_data before using it Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 128/321] kprobes: Blacklist symbols in arch-defined prohibited area Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 129/321] kprobes/x86: Show x86-64 specific blacklisted symbols correctly Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 130/321] vfio-mdev/samples: Use u8 instead of char for handle functions Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 131/321] memory: omap-gpmc: Get the header of the enum Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 132/321] pinctrl: xway: fix gpio-hog related boot issues Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 133/321] net/mlx5: Continue driver initialization despite debugfs failure Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 134/321] netfilter: nf_nat_sip: fix RTP/RTCP source port translations Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 135/321] exofs_mount(): fix leaks on failure exits Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 136/321] bnxt_en: Return linux standard errors in bnxt_ethtool.c Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 137/321] bnxt_en: Save ring statistics before reset Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 138/321] bnxt_en: query force speeds before disabling autoneg mode Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 139/321] KVM: s390: unregister debug feature on failing arch init Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 140/321] pinctrl: sh-pfc: r8a77990: Fix MOD_SEL0 SEL_I2C1 field width Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 141/321] pinctrl: sh-pfc: sh7264: Fix PFCR3 and PFCR0 register configuration Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 142/321] pinctrl: sh-pfc: sh7734: Fix shifted values in IPSR10 Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 143/321] HID: doc: fix wrong data structure reference for UHID_OUTPUT Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 144/321] dm flakey: Properly corrupt multi-page bios Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 145/321] gfs2: take jdata unstuff into account in do_grow Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 146/321] dm raid: fix false -EBUSY when handling check/repair message Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 147/321] xfs: Align compat attrlist_by_handle with native implementation Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 148/321] xfs: Fix bulkstat compat ioctls on x32 userspace Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 149/321] IB/qib: Fix an error code in qib_sdma_verbs_send() Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 150/321] clocksource/drivers/fttmr010: Fix invalid interrupt register access Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 151/321] vxlan: Fix error path in __vxlan_dev_create() Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 152/321] powerpc/book3s/32: fix number of bats in p/v_block_mapped() Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 153/321] powerpc/xmon: fix dump_segments() Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 154/321] drivers/regulator: fix a missing check of return value Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 155/321] Bluetooth: hci_bcm: Handle specific unknown packets after firmware loading Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 156/321] serial: max310x: Fix tx_empty() callback Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 157/321] openrisc: Fix broken paths to arch/or32 Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 158/321] RDMA/srp: Propagate ib_post_send() failures to the SCSI mid-layer Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 159/321] scsi: qla2xxx: deadlock by configfs_depend_item Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 160/321] scsi: csiostor: fix incorrect dma device in case of vport Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 161/321] brcmfmac: Fix access point mode Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 162/321] ath6kl: Only use match sets when firmware supports it Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 163/321] ath6kl: Fix off by one error in scan completion Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 164/321] powerpc/perf: Fix unit_sel/cache_sel checks Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 165/321] powerpc/32: Avoid unsupported flags with clang Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 166/321] powerpc/prom: fix early DEBUG messages Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 167/321] powerpc/mm: Make NULL pointer deferences explicit on bad page faults Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 168/321] powerpc/44x/bamboo: Fix PCI range Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 169/321] vfio/spapr_tce: Get rid of possible infinite loop Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 170/321] powerpc/powernv/eeh/npu: Fix uninitialized variables in opal_pci_eeh_freeze_status Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 171/321] drbd: ignore "all zero" peer volume sizes in handshake Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 172/321] drbd: reject attach of unsuitable uuids even if connected Greg Kroah-Hartman
2019-12-03 22:33 ` [PATCH 4.19 173/321] drbd: do not block when adjusting "disk-options" while IO is frozen Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 174/321] drbd: fix print_st_err()s prototype to match the definition Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 175/321] IB/rxe: Make counters thread safe Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 176/321] bpf/cpumap: make sure frame_size for build_skb is aligned if headroom isnt Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 177/321] regulator: tps65910: fix a missing check of return value Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 178/321] powerpc/83xx: handle machine check caused by watchdog timer Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 179/321] powerpc/pseries: Fix node leak in update_lmb_associativity_index() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 180/321] powerpc: Fix HMIs on big-endian with CONFIG_RELOCATABLE=y Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 181/321] crypto: mxc-scc - fix build warnings on ARM64 Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 182/321] pwm: clps711x: Fix period calculation Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 183/321] net/netlink_compat: Fix a missing check of nla_parse_nested Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 184/321] net/net_namespace: Check the return value of register_pernet_subsys() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 185/321] f2fs: fix block address for __check_sit_bitmap Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 186/321] f2fs: fix to dirty inode synchronously Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 187/321] um: Include sys/uio.h to have writev() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 188/321] um: Make GCOV depend on !KCOV Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 189/321] net: (cpts) fix a missing check of clk_prepare Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 190/321] net: stmicro: " Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 191/321] net: dsa: bcm_sf2: Propagate error value from mdio_write Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 192/321] atl1e: checking the status of atl1e_write_phy_reg Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 193/321] tipc: fix a missing check of genlmsg_put Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 194/321] net: marvell: fix a missing check of acpi_match_device Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 195/321] net/wan/fsl_ucc_hdlc: Avoid double free in ucc_hdlc_probe() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 196/321] ocfs2: clear journal dirty flag after shutdown journal Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 197/321] vmscan: return NODE_RECLAIM_NOSCAN in node_reclaim() when CONFIG_NUMA is n Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 198/321] mm/page_alloc.c: free order-0 pages through PCP in page_frag_free() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 199/321] mm/page_alloc.c: use a single function to free page Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 200/321] mm/page_alloc.c: deduplicate __memblock_free_early() and memblock_free() Greg Kroah-Hartman
2019-12-05 11:50   ` Pavel Machek
2019-12-05 13:11     ` Mike Rapoport
     [not found]       ` <CACzRS4cYJkJAhOdm+qf55H7O4S5HiQEe_fguJGx-mZYJzz62ug@mail.gmail.com>
2019-12-06 13:03         ` Greg Kroah-Hartman
2020-02-09 12:41       ` Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 201/321] tools/vm/page-types.c: fix "kpagecount returned fewer pages than expected" failures Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 202/321] netfilter: nf_tables: fix a missing check of nla_put_failure Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 203/321] xprtrdma: Prevent leak of rpcrdma_rep objects Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 204/321] infiniband: bnxt_re: qplib: Check the return value of send_message Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 205/321] infiniband/qedr: Potential null ptr dereference of qp Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 206/321] firmware: arm_sdei: fix wrong of_node_put() in init function Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 207/321] firmware: arm_sdei: Fix DT platform device creation Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 208/321] lib/genalloc.c: fix allocation of aligned buffer from non-aligned chunk Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 209/321] lib/genalloc.c: use vzalloc_node() to allocate the bitmap Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 210/321] fork: fix some -Wmissing-prototypes warnings Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 211/321] drivers/base/platform.c: kmemleak ignore a known leak Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 212/321] lib/genalloc.c: include vmalloc.h Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 213/321] mtd: Check add_mtd_device() ret code Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 214/321] tipc: fix memory leak in tipc_nl_compat_publ_dump Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 215/321] net/core/neighbour: tell kmemleak about hash tables Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 216/321] ata: ahci: mvebu: do Armada 38x configuration only on relevant SoCs Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 217/321] PCI/MSI: Return -ENOSPC from pci_alloc_irq_vectors_affinity() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 218/321] net/core/neighbour: fix kmemleak minimal reference count for hash tables Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 219/321] serial: 8250: Fix serial8250 initialization crash Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 220/321] gpu: ipu-v3: pre: dont trigger update if buffer address doesnt change Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 221/321] sfc: suppress duplicate nvmem partition types in efx_ef10_mtd_probe Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 222/321] ip_tunnel: Make none-tunnel-dst tunnel port work with lwtunnel Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 223/321] decnet: fix DN_IFREQ_SIZE Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 224/321] net/smc: prevent races between smc_lgr_terminate() and smc_conn_free() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 225/321] net/smc: dont wait for send buffer space when data was already sent Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 226/321] mm/hotplug: invalid PFNs from pfn_to_online_page() Greg Kroah-Hartman
2019-12-05 22:14   ` Pavel Machek
2019-12-06 13:05     ` Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 227/321] xfs: end sync buffer I/O properly on shutdown error Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 228/321] net/smc: fix sender_free computation Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 229/321] blktrace: Show requests without sector Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 230/321] net/smc: fix byte_order for rx_curs_confirmed Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 231/321] tipc: fix skb may be leaky in tipc_link_input Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 232/321] ASoC: samsung: i2s: Fix prescaler setting for the secondary DAI Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 4.19 233/321] sfc: initialise found bitmap in efx_ef10_mtd_probe Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 234/321] geneve: change NET_UDP_TUNNEL dependency to select Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 235/321] net: fix possible overflow in __sk_mem_raise_allocated() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 236/321] net: ip_gre: do not report erspan_ver for gre or gretap Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 237/321] net: ip6_gre: do not report erspan_ver for ip6gre or ip6gretap Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 238/321] sctp: dont compare hb_timer expire date before starting it Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 239/321] bpf: decrease usercnt if bpf_map_new_fd() fails in bpf_map_get_fd_by_id() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 240/321] mmc: core: align max segment size with logical block size Greg Kroah-Hartman
2019-12-05 22:22   ` Pavel Machek
2019-12-06  0:54     ` Ming Lei
2019-12-03 22:35 ` [PATCH 4.19 241/321] net: dev: Use unsigned integer as an argument to left-shift Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 242/321] kvm: properly check debugfs dentry before using it Greg Kroah-Hartman
2019-12-05 22:29   ` Pavel Machek
2019-12-06 13:03     ` Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 243/321] bpf: drop refcount if bpf_map_new_fd() fails in map_create() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 244/321] net: hns3: Change fw error code NOT_EXEC to NOT_SUPPORTED Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 245/321] net: hns3: fix PFC not setting problem for DCB module Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 246/321] net: hns3: fix an issue for hclgevf_ae_get_hdev Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 247/321] net: hns3: fix an issue for hns3_update_new_int_gl Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 248/321] iommu/amd: Fix NULL dereference bug in match_hid_uid Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 249/321] apparmor: delete the dentry in aafs_remove() to avoid a leak Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 250/321] scsi: libsas: Support SATA PHY connection rate unmatch fixing during discovery Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 251/321] ACPI / APEI: Dont wait to serialise with oops messages when panic()ing Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 252/321] ACPI / APEI: Switch estatus pool to use vmalloc memory Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 253/321] scsi: hisi_sas: shutdown axi bus to avoid exception CQ returned Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 254/321] scsi: libsas: Check SMP PHY control function result Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 255/321] RDMA/hns: Fix the bug with updating rq head pointer when flush cqe Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 256/321] RDMA/hns: Bugfix for the scene without receiver queue Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 257/321] RDMA/hns: Fix the state of rereg mr Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 258/321] RDMA/hns: Use GFP_ATOMIC in hns_roce_v2_modify_qp Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 259/321] ASoC: rt5645: Headphone Jack sense inverts on the LattePanda board Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 260/321] powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 261/321] xdp: fix cpumap redirect SKB creation bug Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 262/321] mtd: Remove a debug trace in mtdpart.c Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 263/321] mm, gup: add missing refcount overflow checks on s390 Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 264/321] KVM: nVMX: rename enter_vmx_non_root_mode to nested_vmx_enter_non_root_mode Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 265/321] KVM: nVMX: assimilate nested_vmx_entry_failure() into nested_vmx_enter_non_root_mode() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 266/321] clk: at91: fix update bit maps on CFG_MOR write Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 267/321] clk: at91: generated: set audio_pll_allowed in at91_clk_register_generated() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 268/321] usb: dwc2: use a longer core rest timeout in dwc2_core_reset() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 269/321] staging: rtl8192e: fix potential use after free Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 270/321] staging: rtl8723bs: Drop ACPI device ids Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 271/321] staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 272/321] USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 273/321] mei: bus: prefix device names on bus with the bus name Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 274/321] mei: me: add comet point V device id Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 275/321] thunderbolt: Power cycle the router if NVM authentication fails Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 276/321] xfrm: Fix memleak on xfrm state destroy Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 277/321] media: v4l2-ctrl: fix flags for DO_WHITE_BALANCE Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 278/321] net: macb: fix error format in dev_err() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 279/321] pwm: Clear chip_data in pwm_put() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 280/321] media: atmel: atmel-isc: fix asd memory allocation Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 281/321] media: atmel: atmel-isc: fix INIT_WORK misplacement Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 282/321] macvlan: schedule bc_work even if error Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 283/321] net: psample: fix skb_over_panic Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 284/321] openvswitch: fix flow command message size Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 285/321] sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 286/321] slip: Fix use-after-free Read in slip_open Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 287/321] openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 288/321] openvswitch: remove another BUG_ON() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 289/321] selftests: bpf: test_sockmap: handle file creation failures gracefully Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 290/321] tipc: fix link name length check Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 291/321] sctp: cache netns in sctp_ep_common Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 292/321] net: sched: fix `tc -s class show` no bstats on class with nolock subqueues Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 4.19 293/321] net: macb: add missed tasklet_kill Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 294/321] ext4: add more paranoia checking in ext4_expand_extra_isize handling Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 295/321] watchdog: sama5d4: fix WDD value to be always set to max Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 296/321] net: macb: Fix SUBNS increment and increase resolution Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 297/321] net: macb driver, check for SKBTX_HW_TSTAMP Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 298/321] mtd: rawnand: atmel: Fix spelling mistake in error message Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 299/321] mtd: rawnand: atmel: fix possible object reference leak Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 300/321] mtd: spi-nor: cast to u64 to avoid uint overflows Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 301/321] drm/atmel-hlcdc: revert shift by 8 Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 302/321] mailbox: stm32_ipcc: add spinlock to fix channels concurrent access Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 303/321] tcp: exit if nothing to retransmit on RTO timeout Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 304/321] HID: core: check whether Usage Page item is after Usage ID items Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 305/321] crypto: stm32/hash - Fix hmac issue more than 256 bytes Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 306/321] media: stm32-dcmi: fix DMA corruption when stopping streaming Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 307/321] media: stm32-dcmi: fix check of pm_runtime_get_sync return value Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 308/321] hwrng: stm32 - fix unbalanced pm_runtime_enable Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 309/321] clk: stm32mp1: fix HSI divider flag Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 310/321] clk: stm32mp1: fix mcu divider table Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 311/321] clk: stm32mp1: add CLK_SET_RATE_NO_REPARENT to Kernel clocks Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 312/321] clk: stm32mp1: parent clocks update Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 313/321] mailbox: mailbox-test: fix null pointer if no mmio Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 314/321] pinctrl: stm32: fix memory leak issue Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 315/321] ASoC: stm32: i2s: fix dma configuration Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 316/321] ASoC: stm32: i2s: fix 16 bit format support Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 317/321] ASoC: stm32: i2s: fix IRQ clearing Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 318/321] ASoC: stm32: sai: add missing put_device() Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 319/321] dmaengine: stm32-dma: check whether length is aligned on FIFO threshold Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 320/321] platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 4.19 321/321] platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size Greg Kroah-Hartman
2019-12-04  9:45 ` [PATCH 4.19 000/321] 4.19.88-stable review Jon Hunter
2019-12-04 11:29   ` Greg Kroah-Hartman
2019-12-04 14:53     ` Jon Hunter
2019-12-04 17:18       ` Greg Kroah-Hartman
2019-12-04 19:11     ` Naresh Kamboju
2019-12-04 19:04 ` Guenter Roeck
2019-12-05  0:07 ` shuah

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=20191203223429.145573653@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=f.fainelli@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=opendmb@gmail.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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