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, Michael Mueller <mimu@linux.ibm.com>,
	Cornelia Huck <cohuck@redhat.com>,
	Pierre Morel <pmorel@linux.ibm.com>,
	David Hildenbrand <david@redhat.com>,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 164/313] KVM: s390: unregister debug feature on failing arch init
Date: Mon, 11 Feb 2019 15:17:24 +0100	[thread overview]
Message-ID: <20190211141904.412461815@linuxfoundation.org> (raw)
In-Reply-To: <20190211141852.749630980@linuxfoundation.org>

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

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

[ Upstream commit 308c3e6673b012beecb96ef04cc65f4a0e7cdd99 ]

Make sure the debug feature and its allocated resources get
released upon unsuccessful architecture initialization.

A related indication of the issue will be reported as kernel
message.

Signed-off-by: Michael Mueller <mimu@linux.ibm.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Pierre Morel <pmorel@linux.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-Id: <20181130143215.69496-2-mimu@linux.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/s390/kvm/kvm-s390.c | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
index ac5da6b0b862..6aacb8d3dd9e 100644
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@ -416,19 +416,30 @@ static void kvm_s390_cpu_feat_init(void)
 
 int kvm_arch_init(void *opaque)
 {
+	int rc;
+
 	kvm_s390_dbf = debug_register("kvm-trace", 32, 1, 7 * sizeof(long));
 	if (!kvm_s390_dbf)
 		return -ENOMEM;
 
 	if (debug_register_view(kvm_s390_dbf, &debug_sprintf_view)) {
-		debug_unregister(kvm_s390_dbf);
-		return -ENOMEM;
+		rc = -ENOMEM;
+		goto out_debug_unreg;
 	}
 
 	kvm_s390_cpu_feat_init();
 
 	/* Register floating interrupt controller interface. */
-	return kvm_register_device_ops(&kvm_flic_ops, KVM_DEV_TYPE_FLIC);
+	rc = kvm_register_device_ops(&kvm_flic_ops, KVM_DEV_TYPE_FLIC);
+	if (rc) {
+		pr_err("Failed to register FLIC rc=%d\n", rc);
+		goto out_debug_unreg;
+	}
+	return 0;
+
+out_debug_unreg:
+	debug_unregister(kvm_s390_dbf);
+	return rc;
 }
 
 void kvm_arch_exit(void)
-- 
2.19.1




  parent reply	other threads:[~2019-02-11 15:42 UTC|newest]

Thread overview: 322+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-11 14:14 [PATCH 4.19 000/313] 4.19.21-stable review Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 001/313] devres: Align data[] to ARCH_KMALLOC_MINALIGN Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 002/313] drm/bufs: Fix Spectre v1 vulnerability Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 003/313] staging: iio: adc: ad7280a: handle error from __ad7280_read32() Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 004/313] drm/vgem: Fix vgem_init to get drm device available Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 005/313] pinctrl: bcm2835: Use raw spinlock for RT compatibility Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 006/313] ASoC: Intel: mrfld: fix uninitialized variable access Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 007/313] gpiolib: Fix possible use after free on label Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 008/313] drm/sun4i: Initialize registers in tcon-top driver Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 009/313] genirq/affinity: Spread IRQs to all available NUMA nodes Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 010/313] gpu: ipu-v3: image-convert: Prevent race between run and unprepare Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 011/313] nds32: Fix gcc 8.0 compiler option incompatible Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 012/313] wil6210: fix reset flow for Talyn-mb Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 013/313] wil6210: fix memory leak in wil_find_tx_bcast_2 Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 014/313] ath10k: assign n_cipher_suites for WCN3990 Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 015/313] ath9k: dynack: use authentication messages for late ack Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 016/313] scsi: lpfc: Correct LCB RJT handling Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 017/313] scsi: mpt3sas: Call sas_remove_host before removing the target devices Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 018/313] scsi: lpfc: Fix LOGO/PLOGI handling when triggerd by ABTS Timeout event Greg Kroah-Hartman
2019-02-11 14:14 ` [PATCH 4.19 019/313] ARM: 8808/1: kexec:offline panic_smp_self_stop CPU Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 020/313] clk: boston: fix possible memory leak in clk_boston_setup() Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 021/313] dlm: Dont swamp the CPU with callbacks queued during recovery Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 022/313] x86/PCI: Fix Broadcom CNB20LE unintended sign extension (redux) Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 023/313] powerpc/pseries: add of_node_put() in dlpar_detach_node() Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 024/313] crypto: aes_ti - disable interrupts while accessing S-box Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 025/313] drm/vc4: ->x_scaling[1] should never be set to VC4_SCALING_NONE Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 026/313] serial: fsl_lpuart: clear parity enable bit when disable parity Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 027/313] ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 028/313] MIPS: Boston: Disable EG20T prefetch Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 029/313] dpaa2-ptp: defer probe when portal allocation failed Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 030/313] iwlwifi: fw: do not set sgi bits for HE connection Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 031/313] staging:iio:ad2s90: Make probe handle spi_setup failure Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 032/313] fpga: altera-cvp: Fix registration for CvP incapable devices Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 033/313] Tools: hv: kvp: Fix a warning of buffer overflow with gcc 8.0.1 Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 034/313] fpga: altera-cvp: fix bad IO access on x86_64 Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 035/313] vbox: fix link error with gcc -Og Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 036/313] platform/chrome: dont report EC_MKBP_EVENT_SENSOR_FIFO as wakeup Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 037/313] i40e: prevent overlapping tx_timeout recover Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 038/313] scsi: hisi_sas: change the time of SAS SSP connection Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 039/313] staging: iio: ad7780: update voltage on read Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 040/313] usbnet: smsc95xx: fix rx packet alignment Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 041/313] drm/rockchip: fix for mailbox read size Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 042/313] ARM: OMAP2+: hwmod: Fix some section annotations Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 043/313] drm/amd/display: fix gamma not being applied correctly Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 044/313] drm/amd/display: calculate stream->phy_pix_clk before clock mapping Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 045/313] bpf: libbpf: retry map creation without the name Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 046/313] net/mlx5: EQ, Use the right place to store/read IRQ affinity hint Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 047/313] modpost: validate symbol names also in find_elf_symbol Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 048/313] perf tools: Add Hygon Dhyana support Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 049/313] soc/tegra: Dont leak device tree node reference Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 050/313] media: rc: ensure close() is called on rc_unregister_device Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 051/313] media: video-i2c: avoid accessing released memory area when removing driver Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 052/313] media: mtk-vcodec: Release device nodes in mtk_vcodec_init_enc_pm() Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 053/313] staging: erofs: fix the definition of DBG_BUGON Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 054/313] x86/resctrl: Fixup the user-visible strings Greg Kroah-Hartman
2019-02-11 18:12   ` Reinette Chatre
2019-02-11 19:27     ` Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 055/313] clk: meson: meson8b: do not use cpu_div3 for cpu_scale_out_sel Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 056/313] clk: meson: meson8b: fix the width of the cpu_scale_div clock Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 057/313] clk: meson: meson8b: mark the CPU clock as CLK_IS_CRITICAL Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 058/313] ptp: Fix pass zero to ERR_PTR() in ptp_clock_register Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 059/313] dmaengine: xilinx_dma: Remove __aligned attribute on zynqmp_dma_desc_ll Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 060/313] powerpc/32: Add .data..Lubsan_data*/.data..Lubsan_type* sections explicitly Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 061/313] iio: adc: meson-saradc: check for devm_kasprintf failure Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 062/313] iio: adc: meson-saradc: fix internal clock names Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 063/313] iio: accel: kxcjk1013: Add KIOX010A ACPI Hardware-ID Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 064/313] media: adv*/tc358743/ths8200: fill in min width/height/pixelclock Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 065/313] ACPI: SPCR: Consider baud rate 0 as preconfigured state Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 066/313] staging: pi433: fix potential null dereference Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 067/313] f2fs: move dir data flush to write checkpoint process Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 068/313] f2fs: avoid build warn of fall_through Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 069/313] f2fs: fix race between write_checkpoint and write_begin Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 070/313] f2fs: fix wrong return value of f2fs_acl_create Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 071/313] i2c: sh_mobile: add support for r8a77990 (R-Car E3) Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 072/313] arm64: io: Ensure calls to delay routines are ordered against prior readX() Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 073/313] net: aquantia: return err if set MPI_DEINIT state fails Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 074/313] sunvdc: Do not spin in an infinite loop when vio_ldc_send() returns EAGAIN Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 075/313] soc: bcm: brcmstb: Dont leak device tree node reference Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 076/313] nfsd4: fix crash on writing v4_end_grace before nfsd startup Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 077/313] drm: Clear state->acquire_ctx before leaving drm_atomic_helper_commit_duplicated_state() Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 078/313] perf: arm_spe: handle devm_kasprintf() failure Greg Kroah-Hartman
2019-02-11 14:15 ` [PATCH 4.19 079/313] arm64: io: Ensure value passed to __iormb() is held in a 64-bit register Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 080/313] Thermal: do not clear passive state during system sleep Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 081/313] thermal: Fix locking in cooling device sysfs update cur_state Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 082/313] firmware/efi: Add NULL pointer checks in efivars API functions Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 083/313] s390/zcrypt: improve special ap message cmd handling Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 084/313] mt76x0: dfs: fix IBI_R11 configuration on non-radar channels Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 085/313] arm64: ftrace: dont adjust the LR value Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 086/313] drm/v3d: Fix prime imports of buffers from other drivers Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 087/313] ARM: dts: mmp2: fix TWSI2 Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 088/313] ARM: mmp/mmp2: dt: enable the clock Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 089/313] ARM: dts: aspeed: add missing memory unit-address Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 090/313] x86/fpu: Add might_fault() to user_insn() Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 091/313] media: i2c: TDA1997x: select CONFIG_HDMI Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 092/313] media: DaVinci-VPBE: fix error handling in vpbe_initialize() Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 093/313] smack: fix access permissions for keyring Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 094/313] xtensa: xtfpga.dtsi: fix dtc warnings about SPI Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 095/313] usb: dwc3: Correct the logic for checking TRB full in __dwc3_prepare_one_trb() Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 096/313] usb: dwc2: Disable power down feature on Samsung SoCs Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 097/313] usb: hub: delay hub autosuspend if USB3 port is still link training Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 098/313] timekeeping: Use proper seqcount initializer Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 099/313] usb: mtu3: fix the issue about SetFeature(U1/U2_Enable) Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 100/313] clk: sunxi-ng: a33: Set CLK_SET_RATE_PARENT for all audio module clocks Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 101/313] media: imx274: select REGMAP_I2C Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 102/313] drm/amdgpu/powerplay: fix clock stretcher limits on polaris (v2) Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 103/313] tipc: fix node keep alive interval calculation Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 104/313] driver core: Move async_synchronize_full call Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 105/313] kobject: return error code if writing /sys/.../uevent fails Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 106/313] IB/hfi1: Unreserve a reserved request when it is completed Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 107/313] usb: dwc3: trace: add missing break statement to make compiler happy Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 108/313] gpio: mt7621: report failure of devm_kasprintf() Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 109/313] gpio: mt7621: pass mediatek_gpio_bank_probe() failure up the stack Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 110/313] pinctrl: sx150x: handle failure case of devm_kstrdup Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 111/313] iommu/amd: Fix amd_iommu=force_isolation Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 112/313] ARM: dts: Fix OMAP4430 SDP Ethernet startup Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 113/313] mips: bpf: fix encoding bug for mm_srlv32_op Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 114/313] media: coda: fix H.264 deblocking filter controls Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 115/313] ARM: dts: Fix up the D-Link DIR-685 MTD partition info Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 116/313] tracing: Have trace_stack nr_entries compare not be so subtle Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 117/313] watchdog: renesas_wdt: dont set divider while watchdog is running Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 118/313] ARM: dts: imx51-zii-rdu1: Do not specify "power-gpio" for hpa1 Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 119/313] usb: dwc3: gadget: Disable CSP for stream OUT ep Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 120/313] iommu/arm-smmu-v3: Avoid memory corruption from Hisilicon MSI payloads Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 121/313] iommu/arm-smmu: Add support for qcom,smmu-v2 variant Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 122/313] iommu/arm-smmu-v3: Use explicit mb() when moving cons pointer Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 123/313] sata_rcar: fix deferred probing Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 124/313] clk: imx6sl: ensure MMDC CH0 handshake is bypassed Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 125/313] platform/x86: mlx-platform: Fix tachometer registers Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 126/313] cpuidle: big.LITTLE: fix refcount leak Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 127/313] OPP: Use opp_table->regulators to verify no regulator case Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 128/313] tee: optee: avoid possible double list_del() Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 129/313] drm/msm/dsi: fix dsi clock names in DSI 10nm PLL driver Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 130/313] drm/msm: dpu: Only check flush register against pending flushes Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 131/313] lightnvm: pblk: fix resubmission of overwritten write err lbas Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 132/313] lightnvm: pblk: add lock protection to list operations Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 133/313] i2c-axxia: check for error conditions first Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 134/313] phy: sun4i-usb: add support for missing USB PHY index Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 135/313] mlxsw: spectrum_acl: Limit priority value Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 136/313] udf: Fix BUG on corrupted inode Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 137/313] switchtec: Fix SWITCHTEC_IOCTL_EVENT_IDX_ALL flags overwrite Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 138/313] selftests/bpf: use __bpf_constant_htons in test_prog.c Greg Kroah-Hartman
2019-02-11 14:16 ` [PATCH 4.19 139/313] ARM: pxa: avoid section mismatch warning Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 140/313] ASoC: fsl: Fix SND_SOC_EUKREA_TLV320 build error on i.MX8M Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 141/313] ARM: mmp: fix timer_init calls Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 142/313] KVM: PPC: Book3S: Only report KVM_CAP_SPAPR_TCE_VFIO on powernv machines Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 143/313] mmc: bcm2835: Recover from MMC_SEND_EXT_CSD Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 144/313] mmc: bcm2835: reset host on timeout Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 145/313] mmc: meson-mx-sdio: check devm_kasprintf for failure Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 146/313] memstick: Prevent memstick host from getting runtime suspended during card detection Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 147/313] mmc: sdhci-of-esdhc: Fix timeout checks Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 148/313] mmc: sdhci-omap: " Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 149/313] mmc: sdhci-xenon: " Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 150/313] mmc: jz4740: Get CD/WP GPIOs from descriptors Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 151/313] usb: renesas_usbhs: add support for RZ/G2E Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 152/313] btrfs: harden agaist duplicate fsid on scanned devices Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 153/313] btrfs: reada: reorder dev-replace locks before radix tree preload Greg Kroah-Hartman
2019-02-11 15:17   ` David Sterba
2019-02-11 17:09     ` Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 154/313] serial: sh-sci: Fix locking in sci_submit_rx() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 155/313] serial: sh-sci: Resume PIO in sci_rx_interrupt() on DMA failure Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 156/313] tty: serial: samsung: Properly set flags in autoCTS mode Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 157/313] perf test: Fix perf_event_attr test failure Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 158/313] perf dso: Fix unchecked usage of strncpy() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 159/313] perf header: " Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 160/313] btrfs: use tagged writepage to mitigate livelock of snapshot Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 161/313] perf probe: Fix unchecked usage of strncpy() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 162/313] i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E) Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 163/313] bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings Greg Kroah-Hartman
2019-02-11 14:17 ` Greg Kroah-Hartman [this message]
2019-02-11 14:17 ` [PATCH 4.19 165/313] tools/power/x86/intel_pstate_tracer: Fix non root execution for post processing a trace file Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 166/313] livepatch: check kzalloc return values Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 167/313] arm64: KVM: Skip MMIO insn after emulation Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 168/313] usb: musb: dsps: fix otg state machine Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 169/313] usb: musb: dsps: fix runtime pm for peripheral mode Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 170/313] perf header: Fix up argument to ctime() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 171/313] perf tools: Cast off_t to s64 to avoid warning on bionic libc Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 172/313] percpu: convert spin_lock_irq to spin_lock_irqsave Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 173/313] net: hns3: fix incomplete uninitialization of IRQ in the hns3_nic_uninit_vector_data() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 174/313] drm/amd/display: Add retry to read ddc_clock pin Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 175/313] Bluetooth: hci_bcm: Handle deferred probing for the clock supply Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 176/313] drm/amd/display: fix YCbCr420 blank color Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 177/313] powerpc/uaccess: fix warning/error with access_ok() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 178/313] mac80211: fix radiotap vendor presence bitmap handling Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 179/313] xfrm6_tunnel: Fix spi check in __xfrm6_tunnel_alloc_spi Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 180/313] mlxsw: spectrum: Properly cleanup LAG uppers when removing port from LAG Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 181/313] scsi: smartpqi: correct host serial num for ssa Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 182/313] scsi: smartpqi: correct volume status Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 183/313] scsi: smartpqi: increase fw status register read timeout Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 184/313] cw1200: Fix concurrency use-after-free bugs in cw1200_hw_scan() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 185/313] net: hns3: add max vector number check for pf Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 186/313] powerpc/perf: Fix thresholding counter data for unknown type Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 187/313] iwlwifi: mvm: fix setting HE ppe FW config Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 188/313] powerpc/powernv/ioda: Allocate indirect TCE levels of cached userspace addresses on demand Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 189/313] mlx5: update timecounter at least twice per counter overflow Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 190/313] drbd: narrow rcu_read_lock in drbd_sync_handshake Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 191/313] drbd: disconnect, if the wrong UUIDs are attached on a connected peer Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 192/313] drbd: skip spurious timeout (ping-timeo) when failing promote Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 193/313] drbd: Avoid Clang warning about pointless switch statment Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 194/313] drm/amd/display: validate extended dongle caps Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 195/313] video: clps711x-fb: release disp device node in probe() Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 196/313] md: fix raid10 hang issue caused by barrier Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 197/313] fbdev: fbmem: behave better with small rotated displays and many CPUs Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 198/313] i40e: define proper net_device::neigh_priv_len Greg Kroah-Hartman
2019-02-11 14:17 ` [PATCH 4.19 199/313] ice: Do not enable NAPI on q_vectors that have no rings Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 200/313] igb: Fix an issue that PME is not enabled during runtime suspend Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 201/313] ACPI/APEI: Clear GHES block_status before panic() Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 202/313] fbdev: fbcon: Fix unregister crash when more than one framebuffer Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 203/313] powerpc/mm: Fix reporting of kernel execute faults on the 8xx Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 204/313] pinctrl: meson: meson8: fix the GPIO function for the GPIOAO pins Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 205/313] pinctrl: meson: meson8b: " Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 206/313] KVM: x86: svm: report MSR_IA32_MCG_EXT_CTL as unsupported Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 207/313] powerpc/fadump: Do not allow hot-remove memory from fadump reserved area Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 208/313] kvm: Change offset in kvm_write_guest_offset_cached to unsigned Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 209/313] NFS: nfs_compare_mount_options always compare auth flavors Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 210/313] perf build: Dont unconditionally link the libbfd feature test to -liberty and -lz Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 211/313] hwmon: (lm80) fix a missing check of the status of SMBus read Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 212/313] hwmon: (lm80) fix a missing check of bus read in lm80 probe Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 213/313] seq_buf: Make seq_buf_puts() null-terminate the buffer Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 214/313] crypto: ux500 - Use proper enum in cryp_set_dma_transfer Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 215/313] crypto: ux500 - Use proper enum in hash_set_dma_transfer Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 216/313] MIPS: ralink: Select CONFIG_CPU_MIPSR2_IRQ_VI on MT7620/8 Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 217/313] cifs: check ntwrk_buf_start for NULL before dereferencing it Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 218/313] f2fs: fix use-after-free issue when accessing sbi->stat_info Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 219/313] um: Avoid marking pages with "changed protection" Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 220/313] niu: fix missing checks of niu_pci_eeprom_read Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 221/313] f2fs: fix sbi->extent_list corruption issue Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 222/313] cgroup: fix parsing empty mount option string Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 223/313] perf python: Do not force closing original perf descriptor in evlist.get_pollfd() Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 224/313] scripts/decode_stacktrace: only strip base path when a prefix of the path Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 225/313] arch/sh/boards/mach-kfr2r09/setup.c: fix struct mtd_oob_ops build warning Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 226/313] ocfs2: dont clear bh uptodate for block read Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 227/313] ocfs2: improve ocfs2 Makefile Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 228/313] mm/page_alloc.c: dont call kasan_free_pages() at deferred mem init Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 229/313] zram: fix lockdep warning of free block handling Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 230/313] isdn: hisax: hfc_pci: Fix a possible concurrency use-after-free bug in HFCPCI_l1hw() Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 231/313] gdrom: fix a memory leak bug Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 232/313] fsl/fman: Use GFP_ATOMIC in {memac,tgec}_add_hash_mac_address() Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 233/313] block/swim3: Fix -EBUSY error when re-opening device after unmount Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 234/313] thermal: bcm2835: enable hwmon explicitly Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 235/313] kdb: Dont back trace on a cpu that didnt round up Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 236/313] PCI: imx: Enable MSI from downstream components Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 237/313] thermal: generic-adc: Fix adc to temp interpolation Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 238/313] HID: lenovo: Add checks to fix of_led_classdev_register Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 239/313] arm64/sve: ptrace: Fix SVE_PT_REGS_OFFSET definition Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 240/313] fs/proc/base.c: use ns_capable instead of capable for timerslack_ns Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 241/313] kernel/hung_task.c: break RCU locks based on jiffies Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 242/313] proc/sysctl: fix return error for proc_doulongvec_minmax() Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 243/313] kernel/hung_task.c: force console verbose before panic Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 244/313] fs/epoll: drop ovflist branch prediction Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 245/313] exec: load_script: dont blindly truncate shebang string Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 246/313] kernel/kcov.c: mark write_comp_data() as notrace Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 247/313] scripts/gdb: fix lx-version string output Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 248/313] xfs: Fix xqmstats offsets in /proc/fs/xfs/xqmstat Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 249/313] xfs: cancel COW blocks before swapext Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 250/313] xfs: Fix error code in xfs_ioc_getbmap() Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 251/313] xfs: fix overflow in xfs_attr3_leaf_verify Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 252/313] xfs: fix shared extent data corruption due to missing cow reservation Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 253/313] xfs: fix transient reference count error in xfs_buf_resubmit_failed_buffers Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 254/313] xfs: delalloc -> unwritten COW fork allocation can go wrong Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 255/313] fs/xfs: fix f_ffree value for statfs when project quota is set Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 256/313] xfs: fix PAGE_MASK usage in xfs_free_file_space Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 257/313] xfs: fix inverted return from xfs_btree_sblock_verify_crc Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 258/313] thermal: hwmon: inline helpers when CONFIG_THERMAL_HWMON is not set Greg Kroah-Hartman
2019-02-11 14:18 ` [PATCH 4.19 259/313] dccp: fool proof ccid_hc_[rt]x_parse_options() Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 260/313] enic: fix checksum validation for IPv6 Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 261/313] lib/test_rhashtable: Make test_insert_dup() allocate its hash table dynamically Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 262/313] net: dp83640: expire old TX-skb Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 263/313] net: dsa: Fix lockdep false positive splat Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 264/313] net: dsa: Fix NULL checking in dsa_slave_set_eee() Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 265/313] net: dsa: mv88e6xxx: Fix counting of ATU violations Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 266/313] net: dsa: slave: Dont propagate flag changes on down slave interfaces Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 267/313] net/mlx5e: Force CHECKSUM_UNNECESSARY for short ethernet frames Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 268/313] net: systemport: Fix WoL with password after deep sleep Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 269/313] rds: fix refcount bug in rds_sock_addref Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 270/313] Revert "net: phy: marvell: avoid pause mode on SGMII-to-Copper for 88e151x" Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 271/313] rxrpc: bad unlock balance in rxrpc_recvmsg Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 272/313] sctp: check and update stream->out_curr when allocating stream_out Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 273/313] sctp: walk the list of asoc safely Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 274/313] skge: potential memory corruption in skge_get_regs() Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 275/313] virtio_net: Account for tx bytes and packets on sending xdp_frames Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 276/313] net/mlx5e: FPGA, fix Innova IPsec TX offload data path performance Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 277/313] xfs: eof trim writeback mapping as soon as it is cached Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 278/313] ALSA: compress: Fix stop handling on compressed capture streams Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 279/313] ALSA: usb-audio: Add support for new T+A USB DAC Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 280/313] ALSA: hda - Serialize codec registrations Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 281/313] ALSA: hda/realtek - Fix lose hp_pins for disable auto mute Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 282/313] ALSA: hda/realtek - Use a common helper for hp pin reference Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 283/313] ALSA: hda/realtek - Headset microphone support for System76 darp5 Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 284/313] fuse: call pipe_buf_release() under pipe lock Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 285/313] fuse: decrement NR_WRITEBACK_TEMP on the right page Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 286/313] fuse: handle zero sized retrieve correctly Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 287/313] HID: debug: fix the ring buffer implementation Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 288/313] dmaengine: bcm2835: Fix interrupt race on RT Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 289/313] dmaengine: bcm2835: Fix abort of transactions Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 290/313] dmaengine: imx-dma: fix wrong callback invoke Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 291/313] futex: Handle early deadlock return correctly Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 292/313] irqchip/gic-v3-its: Plug allocation race for devices sharing a DevID Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 293/313] usb: phy: am335x: fix race condition in _probe Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 294/313] usb: dwc3: gadget: Handle 0 xfer length for OUT EP Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 295/313] usb: gadget: udc: net2272: Fix bitwise and boolean operations Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 296/313] usb: gadget: musb: fix short isoc packets with inventra dma Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 297/313] staging: speakup: fix tty-operation NULL derefs Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 298/313] scsi: cxlflash: Prevent deadlock when adapter probe fails Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 299/313] scsi: aic94xx: fix module loading Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 300/313] KVM: x86: work around leak of uninitialized stack contents (CVE-2019-7222) Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 301/313] kvm: fix kvm_ioctl_create_device() reference counting (CVE-2019-6974) Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 302/313] KVM: nVMX: unconditionally cancel preemption timer in free_nested (CVE-2019-7221) Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 303/313] cpu/hotplug: Fix "SMT disabled by BIOS" detection for KVM Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 304/313] perf/x86/intel/uncore: Add Node ID mask Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 305/313] x86/MCE: Initialize mce.bank in the case of a fatal error in mce_no_way_out() Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 306/313] perf/core: Dont WARN() for impossible ring-buffer sizes Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 307/313] perf tests evsel-tp-sched: Fix bitwise operator Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 308/313] serial: fix race between flush_to_ldisc and tty_open Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 309/313] serial: 8250_pci: Make PCI class test non fatal Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 310/313] serial: sh-sci: Do not free irqs that have already been freed Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 311/313] cacheinfo: Keep the old value if of_property_read_u32 fails Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 312/313] IB/hfi1: Add limit test for RC/UC send via loopback Greg Kroah-Hartman
2019-02-11 14:19 ` [PATCH 4.19 313/313] perf/x86/intel: Delay memory deallocation until x86_pmu_dead_cpu() Greg Kroah-Hartman
2019-02-11 19:59 ` [PATCH 4.19 000/313] 4.19.21-stable review kernelci.org bot
2019-02-12 13:11 ` Naresh Kamboju
2019-02-12 15:40 ` shuah
2019-02-12 16:41 ` Guenter Roeck

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20190211141904.412461815@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=borntraeger@de.ibm.com \
    --cc=cohuck@redhat.com \
    --cc=david@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mimu@linux.ibm.com \
    --cc=pmorel@linux.ibm.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).