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, Will Deacon <will@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Ard Biesheuvel <ardb@kernel.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.14 012/237] arm64: ptrace: nofpsimd: Fail FP/SIMD regset operations
Date: Thu, 27 Feb 2020 14:33:46 +0100	[thread overview]
Message-ID: <20200227132256.888148215@linuxfoundation.org> (raw)
In-Reply-To: <20200227132255.285644406@linuxfoundation.org>

From: Suzuki K Poulose <suzuki.poulose@arm.com>

commit c9d66999f064947e6b577ceacc1eb2fbca6a8d3c upstream

When fp/simd is not supported on the system, fail the operations
of FP/SIMD regsets.

Cc: stable@vger.kernel.org # v4.14
Cc: Will Deacon <will@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/arm64/kernel/ptrace.c | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/arch/arm64/kernel/ptrace.c b/arch/arm64/kernel/ptrace.c
index 242527f29c410..e230b4dff9602 100644
--- a/arch/arm64/kernel/ptrace.c
+++ b/arch/arm64/kernel/ptrace.c
@@ -624,6 +624,13 @@ static int gpr_set(struct task_struct *target, const struct user_regset *regset,
 	return 0;
 }
 
+static int fpr_active(struct task_struct *target, const struct user_regset *regset)
+{
+	if (!system_supports_fpsimd())
+		return -ENODEV;
+	return regset->n;
+}
+
 /*
  * TODO: update fp accessors for lazy context switching (sync/flush hwstate)
  */
@@ -634,6 +641,9 @@ static int fpr_get(struct task_struct *target, const struct user_regset *regset,
 	struct user_fpsimd_state *uregs;
 	uregs = &target->thread.fpsimd_state.user_fpsimd;
 
+	if (!system_supports_fpsimd())
+		return -EINVAL;
+
 	if (target == current)
 		fpsimd_preserve_current_state();
 
@@ -648,6 +658,9 @@ static int fpr_set(struct task_struct *target, const struct user_regset *regset,
 	struct user_fpsimd_state newstate =
 		target->thread.fpsimd_state.user_fpsimd;
 
+	if (!system_supports_fpsimd())
+		return -EINVAL;
+
 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &newstate, 0, -1);
 	if (ret)
 		return ret;
@@ -740,6 +753,7 @@ static const struct user_regset aarch64_regsets[] = {
 		 */
 		.size = sizeof(u32),
 		.align = sizeof(u32),
+		.active = fpr_active,
 		.get = fpr_get,
 		.set = fpr_set
 	},
@@ -914,6 +928,9 @@ static int compat_vfp_get(struct task_struct *target,
 	compat_ulong_t fpscr;
 	int ret, vregs_end_pos;
 
+	if (!system_supports_fpsimd())
+		return -EINVAL;
+
 	uregs = &target->thread.fpsimd_state.user_fpsimd;
 
 	if (target == current)
@@ -947,6 +964,9 @@ static int compat_vfp_set(struct task_struct *target,
 	compat_ulong_t fpscr;
 	int ret, vregs_end_pos;
 
+	if (!system_supports_fpsimd())
+		return -EINVAL;
+
 	uregs = &target->thread.fpsimd_state.user_fpsimd;
 
 	vregs_end_pos = VFP_STATE_SIZE - sizeof(compat_ulong_t);
@@ -1004,6 +1024,7 @@ static const struct user_regset aarch32_regsets[] = {
 		.n = VFP_STATE_SIZE / sizeof(compat_ulong_t),
 		.size = sizeof(compat_ulong_t),
 		.align = sizeof(compat_ulong_t),
+		.active = fpr_active,
 		.get = compat_vfp_get,
 		.set = compat_vfp_set
 	},
-- 
2.20.1




  parent reply	other threads:[~2020-02-27 13:52 UTC|newest]

Thread overview: 252+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-27 13:33 [PATCH 4.14 000/237] 4.14.172-stable review Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 001/237] KVM: x86: emulate RDPID Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 002/237] iommu/qcom: Fix bogus detach logic Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 003/237] ALSA: hda: Use scnprintf() for printing texts for sysfs/procfs Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 004/237] ASoC: sun8i-codec: Fix setting DAI data format Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 005/237] ecryptfs: fix a memory leak bug in parse_tag_1_packet() Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 006/237] ecryptfs: fix a memory leak bug in ecryptfs_init_messaging() Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 007/237] Input: synaptics - switch T470s to RMI4 by default Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 008/237] Input: synaptics - enable SMBus on ThinkPad L470 Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 009/237] Input: synaptics - remove the LEN0049 dmi id from topbuttonpad list Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 010/237] ALSA: usb-audio: Apply sample rate quirk for Audioengine D1 Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 011/237] arm64: cpufeature: Set the FP/SIMD compat HWCAP bits properly Greg Kroah-Hartman
2020-02-27 13:33 ` Greg Kroah-Hartman [this message]
2020-02-27 13:33 ` [PATCH 4.14 013/237] arm64: nofpsimd: Handle TIF_FOREIGN_FPSTATE flag cleanly Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 014/237] ARM: 8723/2: always assume the "unified" syntax for assembly code Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 015/237] ext4: dont assume that mmp_nodename/bdevname have NUL Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 016/237] ext4: fix support for inode sizes > 1024 bytes Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 017/237] ext4: fix checksum errors with indexed dirs Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 018/237] ext4: improve explanation of a mount failure caused by a misconfigured kernel Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 019/237] Btrfs: fix race between using extent maps and merging them Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 020/237] btrfs: print message when tree-log replay starts Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 021/237] btrfs: log message when rw remount is attempted with unclean tree-log Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 022/237] arm64: ssbs: Fix context-switch when SSBS is present on all CPUs Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 023/237] KVM: nVMX: Use correct root level for nested EPT shadow page tables Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 024/237] perf/x86/amd: Add missing L2 misses event spec to AMD Family 17hs event map Greg Kroah-Hartman
2020-02-27 13:33 ` [PATCH 4.14 025/237] padata: Remove broken queue flushing Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 026/237] serial: imx: ensure that RX irqs are off if RX is off Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 027/237] serial: imx: Only handle irqs that are actually enabled Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 028/237] IB/hfi1: Close window for pq and request coliding Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 029/237] RDMA/core: Fix protection fault in get_pkey_idx_qp_list Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 030/237] s390/time: Fix clk type in get_tod_clock Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 031/237] perf/x86/intel: Fix inaccurate period in context switch for auto-reload Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 032/237] hwmon: (pmbus/ltc2978) Fix PMBus polling of MFR_COMMON definitions Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 033/237] jbd2: move the clearing of b_modified flag to the journal_unmap_buffer() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 034/237] jbd2: do not clear the BH_Mapped flag when forgetting a metadata buffer Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 035/237] scsi: qla2xxx: fix a potential NULL pointer dereference Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 036/237] Revert "KVM: nVMX: Use correct root level for nested EPT shadow page tables" Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 037/237] Revert "KVM: VMX: Add non-canonical check on writes to RTIT address MSRs" Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 038/237] KVM: nVMX: Use correct root level for nested EPT shadow page tables - again Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 039/237] drm/gma500: Fixup fbdev stolen size usage evaluation Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 040/237] cpu/hotplug, stop_machine: Fix stop_machine vs hotplug order Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 041/237] brcmfmac: Fix use after free in brcmf_sdio_readframes() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 042/237] leds: pca963x: Fix open-drain initialization Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 043/237] ext4: fix ext4_dax_read/write inode locking sequence for IOCB_NOWAIT Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 044/237] ALSA: ctl: allow TLV read operation for callback type of element in locked case Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 045/237] gianfar: Fix TX timestamping with a stacked DSA driver Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 046/237] pinctrl: sh-pfc: sh7264: Fix CAN function GPIOs Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 047/237] pxa168fb: Fix the function used to release some memory in an error handling path Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 048/237] media: i2c: mt9v032: fix enum mbus codes and frame sizes Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 049/237] powerpc/powernv/iov: Ensure the pdn for VFs always contains a valid PE number Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 050/237] gpio: gpio-grgpio: fix possible sleep-in-atomic-context bugs in grgpio_irq_map/unmap() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 051/237] char/random: silence a lockdep splat with printk() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 052/237] media: sti: bdisp: fix a possible sleep-in-atomic-context bug in bdisp_device_run() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 053/237] pinctrl: baytrail: Do not clear IRQ flags on direct-irq enabled pins Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 054/237] efi/x86: Map the entire EFI vendor string before copying it Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 055/237] MIPS: Loongson: Fix potential NULL dereference in loongson3_platform_init() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 056/237] sparc: Add .exit.data section Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 057/237] uio: fix a sleep-in-atomic-context bug in uio_dmem_genirq_irqcontrol() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 058/237] usb: gadget: udc: fix possible sleep-in-atomic-context bugs in gr_probe() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 059/237] usb: dwc2: Fix IN FIFO allocation Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 060/237] clocksource/drivers/bcm2835_timer: Fix memory leak of timer Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 061/237] kselftest: Minimise dependency of get_size on C library interfaces Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 062/237] jbd2: clear JBD2_ABORT flag before journal_reset to update log tail info when load journal Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 063/237] x86/sysfb: Fix check for bad VRAM size Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 064/237] tracing: Fix tracing_stat return values in error handling paths Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 065/237] tracing: Fix very unlikely race of registering two stat tracers Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 066/237] ext4, jbd2: ensure panic when aborting with zero errno Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 067/237] nbd: add a flush_workqueue in nbd_start_device Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 068/237] KVM: s390: ENOTSUPP -> EOPNOTSUPP fixups Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 069/237] kconfig: fix broken dependency in randconfig-generated .config Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 070/237] clk: qcom: rcg2: Dont crash if our parent cant be found; return an error Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 071/237] drm/amdgpu: remove 4 set but not used variable in amdgpu_atombios_get_connector_info_from_object_table Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 072/237] regulator: rk808: Lower log level on optional GPIOs being not available Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 073/237] net/wan/fsl_ucc_hdlc: reject muram offsets above 64K Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 074/237] PCI/IOV: Fix memory leak in pci_iov_add_virtfn() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 075/237] NFC: port100: Convert cpu_to_le16(le16_to_cpu(E1) + E2) to use le16_add_cpu() Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 076/237] arm64: dts: qcom: msm8996: Disable USB2 PHY suspend by core Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 077/237] ARM: dts: imx6: rdu2: Disable WP for USDHC2 and USDHC3 Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 078/237] media: v4l2-device.h: Explicitly compare grp{id,mask} to zero in v4l2_device macros Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 079/237] reiserfs: Fix spurious unlock in reiserfs_fill_super() error handling Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 080/237] fore200e: Fix incorrect checks of NULL pointer dereference Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 081/237] ALSA: usx2y: Adjust indentation in snd_usX2Y_hwdep_dsp_status Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 082/237] b43legacy: Fix -Wcast-function-type Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 083/237] ipw2x00: " Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 084/237] iwlegacy: " Greg Kroah-Hartman
2020-02-27 13:34 ` [PATCH 4.14 085/237] rtlwifi: rtl_pci: " Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 086/237] orinoco: avoid assertion in case of NULL pointer Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 087/237] ACPICA: Disassembler: create buffer fields in ACPI_PARSE_LOAD_PASS1 Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 088/237] scsi: ufs: Complete pending requests in host reset and restore path Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 089/237] scsi: aic7xxx: Adjust indentation in ahc_find_syncrate Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 090/237] drm/mediatek: handle events when enabling/disabling crtc Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 091/237] ARM: dts: r8a7779: Add device node for ARM global timer Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 092/237] dmaengine: Store module owner in dma_device struct Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 093/237] x86/vdso: Provide missing include file Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 094/237] PM / devfreq: rk3399_dmc: Add COMPILE_TEST and HAVE_ARM_SMCCC dependency Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 095/237] pinctrl: sh-pfc: sh7269: Fix CAN function GPIOs Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 096/237] RDMA/rxe: Fix error type of mmap_offset Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 097/237] clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 098/237] ALSA: sh: Fix unused variable warnings Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 099/237] ALSA: sh: Fix compile warning wrt const Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 100/237] tools lib api fs: Fix gcc9 stringop-truncation compilation error Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 101/237] drm: remove the newline for CRC source name Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 102/237] usbip: Fix unsafe unaligned pointer usage Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 103/237] udf: Fix free space reporting for metadata and virtual partitions Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 104/237] IB/hfi1: Add software counter for ctxt0 seq drop Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 105/237] soc/tegra: fuse: Correct straps address for older Tegra124 device trees Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 106/237] efi/x86: Dont panic or BUG() on non-critical error conditions Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 107/237] rcu: Use WRITE_ONCE() for assignments to ->pprev for hlist_nulls Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 108/237] Input: edt-ft5x06 - work around first register access error Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 109/237] wan: ixp4xx_hss: fix compile-testing on 64-bit Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 110/237] ASoC: atmel: fix build error with CONFIG_SND_ATMEL_SOC_DMA=m Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 111/237] tty: synclinkmp: Adjust indentation in several functions Greg Kroah-Hartman
2020-02-28  3:55   ` Joe Perches
2020-02-28  7:12     ` Greg Kroah-Hartman
2020-02-28 18:06       ` Joe Perches
2020-02-29  3:46         ` Sasha Levin
2020-02-27 13:35 ` [PATCH 4.14 112/237] tty: synclink_gt: " Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 113/237] driver core: platform: Prevent resouce overflow from causing infinite loops Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 114/237] driver core: Print device when resources present in really_probe() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 115/237] vme: bridges: reduce stack usage Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 116/237] drm/nouveau/secboot/gm20b: initialize pointer in gm20b_secboot_new() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 117/237] drm/nouveau/gr/gk20a,gm200-: add terminators to method lists read from fw Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 118/237] drm/nouveau: Fix copy-paste error in nouveau_fence_wait_uevent_handler Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 119/237] drm/vmwgfx: prevent memory leak in vmw_cmdbuf_res_add Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 120/237] usb: musb: omap2430: Get rid of musb .set_vbus for omap2430 glue Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 121/237] iommu/arm-smmu-v3: Use WRITE_ONCE() when changing validity of an STE Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 122/237] f2fs: free sysfs kobject Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 123/237] scsi: iscsi: Dont destroy session if there are outstanding connections Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 124/237] arm64: fix alternatives with LLVMs integrated assembler Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 125/237] watchdog/softlockup: Enforce that timestamp is valid on boot Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 126/237] f2fs: fix memleak of kobject Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 127/237] x86/mm: Fix NX bit clearing issue in kernel_map_pages_in_pgd Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 128/237] pwm: omap-dmtimer: Remove PWM chip in .remove before making it unfunctional Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 129/237] cmd64x: potential buffer overflow in cmd64x_program_timings() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 130/237] ide: serverworks: potential overflow in svwks_set_pio_mode() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 131/237] pwm: Remove set but not set variable pwm Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 132/237] btrfs: fix possible NULL-pointer dereference in integrity checks Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 133/237] btrfs: safely advance counter when looking up bio csums Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 134/237] btrfs: device stats, log when stats are zeroed Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 135/237] remoteproc: Initialize rproc_class before use Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 136/237] irqchip/mbigen: Set driver .suppress_bind_attrs to avoid remove problems Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 137/237] ALSA: hda/hdmi - add retry logic to parse_intel_hdmi() Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 138/237] x86/decoder: Add TEST opcode to Group3-2 Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 139/237] s390/ftrace: generate traced function stack frame Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 140/237] driver core: platform: fix u32 greater or equal to zero comparison Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 141/237] ALSA: hda - Add docking station support for Lenovo Thinkpad T420s Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 142/237] powerpc/sriov: Remove VF eeh_dev state when disabling SR-IOV Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 143/237] jbd2: switch to use jbd2_journal_abort() when failed to submit the commit record Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 144/237] jbd2: make sure ESHUTDOWN to be recorded in the journal superblock Greg Kroah-Hartman
2020-02-27 13:35 ` [PATCH 4.14 145/237] ARM: 8951/1: Fix Kexec compilation issue Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 146/237] hostap: Adjust indentation in prism2_hostapd_add_sta Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 147/237] iwlegacy: ensure loop counter addr does not wrap and cause an infinite loop Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 148/237] cifs: fix NULL dereference in match_prepath Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 149/237] ceph: check availability of mds cluster on mount after wait timeout Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 150/237] irqchip/gic-v3: Only provision redistributors that are enabled in ACPI Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 151/237] drm/nouveau/disp/nv50-: prevent oops when no channel method map provided Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 152/237] ftrace: fpid_next() should increase position index Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 153/237] trigger_next " Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 154/237] radeon: insert 10ms sleep in dce5_crtc_load_lut Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 155/237] ocfs2: fix a NULL pointer dereference when call ocfs2_update_inode_fsync_trans() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 156/237] lib/scatterlist.c: adjust indentation in __sg_alloc_table Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 157/237] reiserfs: prevent NULL pointer dereference in reiserfs_insert_item() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 158/237] bcache: explicity type cast in bset_bkey_last() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 159/237] irqchip/gic-v3-its: Reference to its_invall_cmd descriptor when building INVALL Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 160/237] iwlwifi: mvm: Fix thermal zone registration Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 161/237] microblaze: Prevent the overflow of the start Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 162/237] brd: check and limit max_part par Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 163/237] help_next should increase position index Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 164/237] virtio_balloon: prevent pfn array overflow Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 165/237] mlxsw: spectrum_dpipe: Add missing error path Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 166/237] selinux: ensure we cleanup the internal AVC counters on error in avc_update() Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 167/237] enic: prevent waking up stopped tx queues over watchdog reset Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 168/237] net: dsa: tag_qca: Make sure there is headroom for tag Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 169/237] net/sched: matchall: add missing validation of TCA_MATCHALL_FLAGS Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 170/237] net/sched: flower: add missing validation of TCA_FLOWER_FLAGS Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 171/237] net/smc: fix leak of kernel memory to user space Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 172/237] thunderbolt: Prevent crash if non-active NVMem file is read Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 173/237] USB: misc: iowarrior: add support for 2 OEMed devices Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 174/237] USB: misc: iowarrior: add support for the 28 and 28L devices Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 175/237] USB: misc: iowarrior: add support for the 100 device Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 176/237] floppy: check FDC index for errors before assigning it Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 177/237] vt: selection, handle pending signals in paste_selection Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 178/237] staging: android: ashmem: Disallow ashmem memory from being remapped Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 179/237] staging: vt6656: fix sign of rx_dbm to bb_pre_ed_rssi Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 180/237] xhci: Force Maximum Packet size for Full-speed bulk devices to valid range Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 181/237] xhci: fix runtime pm enabling for quirky Intel hosts Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 182/237] usb: host: xhci: update event ring dequeue pointer on purpose Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 183/237] usb: uas: fix a plug & unplug racing Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 184/237] USB: Fix novation SourceControl XL after suspend Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 185/237] USB: hub: Dont record a connect-change event during reset-resume Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 186/237] USB: hub: Fix the broken detection of USB3 device in SMSC hub Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 187/237] staging: rtl8188eu: Fix potential security hole Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 188/237] staging: rtl8188eu: Fix potential overuse of kernel memory Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 189/237] staging: rtl8723bs: Fix potential security hole Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 190/237] staging: rtl8723bs: Fix potential overuse of kernel memory Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 191/237] x86/mce/amd: Publish the bank pointer only after setup has succeeded Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 192/237] x86/mce/amd: Fix kobject lifetime Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 193/237] tty/serial: atmel: manage shutdown in case of RS485 or ISO7816 mode Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 194/237] tty: serial: imx: setup the correct sg entry for tx dma Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 195/237] serdev: ttyport: restore client ops on deregistration Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 196/237] MAINTAINERS: Update drm/i915 bug filing URL Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 197/237] Revert "ipc,sem: remove uneeded sem_undo_list lock usage in exit_sem()" Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 198/237] mm/vmscan.c: dont round up scan size for online memory cgroup Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 199/237] drm/amdgpu/soc15: fix xclk for raven Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 200/237] KVM: x86: dont notify userspace IOAPIC on edge-triggered interrupt EOI Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 201/237] xhci: apply XHCI_PME_STUCK_QUIRK to Intel Comet Lake platforms Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 202/237] VT_RESIZEX: get rid of field-by-field copyin Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 203/237] vt: vt_ioctl: fix race in VT_RESIZEX Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 204/237] powerpc/tm: P9 disable transactionally suspended sigcontexts Greg Kroah-Hartman
2020-02-27 13:36 ` [PATCH 4.14 205/237] powerpc/tm: Fix endianness flip on trap Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 206/237] powerpc/tm: Fix clearing MSR[TS] in current when reclaiming on signal delivery Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 207/237] serial: 8250: Check UPF_IRQ_SHARED in advance Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 208/237] lib/stackdepot: Fix outdated comments Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 209/237] lib/stackdepot.c: fix global out-of-bounds in stack_slabs Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 210/237] KVM: nVMX: Dont emulate instructions in guest mode Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 211/237] ext4: fix a data race in EXT4_I(inode)->i_disksize Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 212/237] ext4: add cond_resched() to __ext4_find_entry() Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 213/237] ext4: fix mount failure with quota configured as module Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 214/237] ext4: rename s_journal_flag_rwsem to s_writepages_rwsem Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 215/237] ext4: fix race between writepages and enabling EXT4_EXTENTS_FL Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 216/237] KVM: nVMX: Refactor IO bitmap checks into helper function Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 217/237] KVM: nVMX: Check IO instruction VM-exit conditions Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 218/237] KVM: nVMX: handle nested posted interrupts when apicv is disabled for L1 Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 219/237] KVM: apic: avoid calculating pending eoi from an uninitialized val Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 220/237] btrfs: fix bytes_may_use underflow in prealloc error condtition Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 221/237] btrfs: do not check delayed items are empty for single transaction cleanup Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 222/237] Btrfs: fix btrfs_wait_ordered_range() so that it waits for all ordered extents Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 223/237] scsi: Revert "RDMA/isert: Fix a recently introduced regression related to logout" Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 224/237] scsi: Revert "target: iscsi: Wait for all commands to finish before freeing a session" Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 225/237] usb: gadget: composite: Fix bMaxPower for SuperSpeedPlus Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 226/237] staging: rtl8723bs: fix copy of overlapping memory Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 227/237] staging: greybus: use after free in gb_audio_manager_remove_all() Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 228/237] ecryptfs: replace BUG_ON with error handling code Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 229/237] iommu/vt-d: Fix compile warning from intel-svm.h Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 230/237] genirq/proc: Reject invalid affinity masks (again) Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 231/237] ALSA: rawmidi: Avoid bit fields for state flags Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 232/237] ALSA: seq: Avoid concurrent access to queue flags Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 233/237] ALSA: seq: Fix concurrent access to queue current tick/time Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 234/237] netfilter: xt_hashlimit: limit the max size of hashtable Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 235/237] ata: ahci: Add shutdown to freeze hardware resources of ahci Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 236/237] xen: Enable interrupts when calling _cond_resched() Greg Kroah-Hartman
2020-02-27 13:37 ` [PATCH 4.14 237/237] s390/mm: Explicitly compare PAGE_DEFAULT_KEY against zero in storage_key_init_range Greg Kroah-Hartman
2020-02-27 18:51 ` [PATCH 4.14 000/237] 4.14.172-stable review Jon Hunter
2020-02-27 19:40 ` Guenter Roeck
2020-02-28  3:29 ` Naresh Kamboju
2020-02-28  3:42 ` shuah
2020-02-28 11:59 ` Greg Kroah-Hartman
2020-02-28 14:32   ` Guenter Roeck
2020-02-28 15:24     ` Greg Kroah-Hartman
2020-03-01  9:38 ` Geert Uytterhoeven
2020-03-01  9:42   ` Greg Kroah-Hartman
2020-03-01  9:52     ` Geert Uytterhoeven

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=20200227132256.888148215@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ardb@kernel.org \
    --cc=catalin.marinas@arm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=suzuki.poulose@arm.com \
    --cc=will@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).