From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Hedi Berriche <hedi.berriche@hpe.com>,
Borislav Petkov <bp@suse.de>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>,
Russ Anderson <rja@hpe.com>, Dimitri Sivanich <sivanich@hpe.com>,
Mike Travis <mike.travis@hpe.com>,
Andy Shevchenko <andy@infradead.org>,
Bhupesh Sharma <bhsharma@redhat.com>,
Darren Hart <dvhart@infradead.org>,
"H. Peter Anvin" <hpa@zytor.com>, Ingo Molnar <mingo@redhat.com>,
linux-efi <linux-efi@vger.kernel.org>,
platform-driver-x86@vger.kernel.org,
Steve Wahl <steve.wahl@hpe.com>,
Thomas Gleixner <tglx@linutronix.de>, x86-ml <x86@kernel.org>
Subject: [PATCH 4.4 135/143] x86/platform/UV: Use efi_runtime_lock to serialise BIOS calls
Date: Mon, 18 Feb 2019 14:44:23 +0100 [thread overview]
Message-ID: <20190218133533.912603392@linuxfoundation.org> (raw)
In-Reply-To: <20190218133529.099444112@linuxfoundation.org>
4.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Hedi Berriche <hedi.berriche@hpe.com>
commit f331e766c4be33f4338574f3c9f7f77e98ab4571 upstream.
Calls into UV firmware must be protected against concurrency, expose the
efi_runtime_lock to the UV platform, and use it to serialise UV BIOS
calls.
Signed-off-by: Hedi Berriche <hedi.berriche@hpe.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Russ Anderson <rja@hpe.com>
Reviewed-by: Dimitri Sivanich <sivanich@hpe.com>
Reviewed-by: Mike Travis <mike.travis@hpe.com>
Cc: Andy Shevchenko <andy@infradead.org>
Cc: Bhupesh Sharma <bhsharma@redhat.com>
Cc: Darren Hart <dvhart@infradead.org>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: linux-efi <linux-efi@vger.kernel.org>
Cc: platform-driver-x86@vger.kernel.org
Cc: stable@vger.kernel.org # v4.9+
Cc: Steve Wahl <steve.wahl@hpe.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: x86-ml <x86@kernel.org>
Link: https://lkml.kernel.org/r/20190213193413.25560-5-hedi.berriche@hpe.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/x86/include/asm/uv/bios.h | 8 +++++++-
arch/x86/platform/uv/bios_uv.c | 23 +++++++++++++++++++++--
drivers/firmware/efi/runtime-wrappers.c | 7 +++++++
3 files changed, 35 insertions(+), 3 deletions(-)
--- a/arch/x86/include/asm/uv/bios.h
+++ b/arch/x86/include/asm/uv/bios.h
@@ -48,7 +48,8 @@ enum {
BIOS_STATUS_SUCCESS = 0,
BIOS_STATUS_UNIMPLEMENTED = -ENOSYS,
BIOS_STATUS_EINVAL = -EINVAL,
- BIOS_STATUS_UNAVAIL = -EBUSY
+ BIOS_STATUS_UNAVAIL = -EBUSY,
+ BIOS_STATUS_ABORT = -EINTR,
};
/*
@@ -111,4 +112,9 @@ extern long system_serial_number;
extern struct kobject *sgi_uv_kobj; /* /sys/firmware/sgi_uv */
+/*
+ * EFI runtime lock; cf. firmware/efi/runtime-wrappers.c for details
+ */
+extern struct semaphore __efi_uv_runtime_lock;
+
#endif /* _ASM_X86_UV_BIOS_H */
--- a/arch/x86/platform/uv/bios_uv.c
+++ b/arch/x86/platform/uv/bios_uv.c
@@ -28,7 +28,8 @@
static struct uv_systab uv_systab;
-s64 uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, u64 a4, u64 a5)
+static s64 __uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
+ u64 a4, u64 a5)
{
struct uv_systab *tab = &uv_systab;
s64 ret;
@@ -43,6 +44,19 @@ s64 uv_bios_call(enum uv_bios_cmd which,
a1, a2, a3, a4, a5);
return ret;
}
+
+s64 uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, u64 a4, u64 a5)
+{
+ s64 ret;
+
+ if (down_interruptible(&__efi_uv_runtime_lock))
+ return BIOS_STATUS_ABORT;
+
+ ret = __uv_bios_call(which, a1, a2, a3, a4, a5);
+ up(&__efi_uv_runtime_lock);
+
+ return ret;
+}
EXPORT_SYMBOL_GPL(uv_bios_call);
s64 uv_bios_call_irqsave(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
@@ -51,10 +65,15 @@ s64 uv_bios_call_irqsave(enum uv_bios_cm
unsigned long bios_flags;
s64 ret;
+ if (down_interruptible(&__efi_uv_runtime_lock))
+ return BIOS_STATUS_ABORT;
+
local_irq_save(bios_flags);
- ret = uv_bios_call(which, a1, a2, a3, a4, a5);
+ ret = __uv_bios_call(which, a1, a2, a3, a4, a5);
local_irq_restore(bios_flags);
+ up(&__efi_uv_runtime_lock);
+
return ret;
}
--- a/drivers/firmware/efi/runtime-wrappers.c
+++ b/drivers/firmware/efi/runtime-wrappers.c
@@ -88,6 +88,13 @@ static DEFINE_SPINLOCK(efi_runtime_lock)
*/
/*
+ * Expose the EFI runtime lock to the UV platform
+ */
+#ifdef CONFIG_X86_UV
+extern struct semaphore __efi_uv_runtime_lock __alias(efi_runtime_lock);
+#endif
+
+/*
* As per commit ef68c8f87ed1 ("x86: Serialize EFI time accesses on rtc_lock"),
* the EFI specification requires that callers of the time related runtime
* functions serialize with other CMOS accesses in the kernel, as the EFI time
next prev parent reply other threads:[~2019-02-18 13:44 UTC|newest]
Thread overview: 155+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-18 13:42 [PATCH 4.4 000/143] 4.4.175-stable review Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 001/143] drm/bufs: Fix Spectre v1 vulnerability Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 002/143] staging: iio: adc: ad7280a: handle error from __ad7280_read32() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 003/143] ASoC: Intel: mrfld: fix uninitialized variable access Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 004/143] scsi: lpfc: Correct LCB RJT handling Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 005/143] ARM: 8808/1: kexec:offline panic_smp_self_stop CPU Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 006/143] dlm: Dont swamp the CPU with callbacks queued during recovery Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 007/143] x86/PCI: Fix Broadcom CNB20LE unintended sign extension (redux) Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 008/143] powerpc/pseries: add of_node_put() in dlpar_detach_node() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 009/143] serial: fsl_lpuart: clear parity enable bit when disable parity Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 010/143] ptp: check gettime64 return code in PTP_SYS_OFFSET ioctl Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 011/143] staging:iio:ad2s90: Make probe handle spi_setup failure Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 012/143] staging: iio: ad7780: update voltage on read Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 013/143] ARM: OMAP2+: hwmod: Fix some section annotations Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 014/143] modpost: validate symbol names also in find_elf_symbol Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 015/143] perf tools: Add Hygon Dhyana support Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 016/143] soc/tegra: Dont leak device tree node reference Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 017/143] f2fs: move dir data flush to write checkpoint process Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 018/143] f2fs: fix wrong return value of f2fs_acl_create Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 019/143] sunvdc: Do not spin in an infinite loop when vio_ldc_send() returns EAGAIN Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 020/143] nfsd4: fix crash on writing v4_end_grace before nfsd startup Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 021/143] arm64: ftrace: dont adjust the LR value Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 022/143] ARM: dts: mmp2: fix TWSI2 Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 023/143] x86/fpu: Add might_fault() to user_insn() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 024/143] media: DaVinci-VPBE: fix error handling in vpbe_initialize() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 025/143] smack: fix access permissions for keyring Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 026/143] usb: hub: delay hub autosuspend if USB3 port is still link training Greg Kroah-Hartman
2019-02-18 15:39 ` Alan Stern
2019-02-19 8:11 ` Mathias Nyman
2019-02-18 13:42 ` [PATCH 4.4 027/143] timekeeping: Use proper seqcount initializer Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 028/143] ARM: dts: Fix OMAP4430 SDP Ethernet startup Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 029/143] mips: bpf: fix encoding bug for mm_srlv32_op Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 030/143] iommu/arm-smmu-v3: Use explicit mb() when moving cons pointer Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 031/143] sata_rcar: fix deferred probing Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 032/143] clk: imx6sl: ensure MMDC CH0 handshake is bypassed Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 033/143] cpuidle: big.LITTLE: fix refcount leak Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 034/143] i2c-axxia: check for error conditions first Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 035/143] udf: Fix BUG on corrupted inode Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 036/143] ARM: pxa: avoid section mismatch warning Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 037/143] ASoC: fsl: Fix SND_SOC_EUKREA_TLV320 build error on i.MX8M Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 038/143] memstick: Prevent memstick host from getting runtime suspended during card detection Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 039/143] tty: serial: samsung: Properly set flags in autoCTS mode Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 040/143] arm64: KVM: Skip MMIO insn after emulation Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 041/143] powerpc/uaccess: fix warning/error with access_ok() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 042/143] mac80211: fix radiotap vendor presence bitmap handling Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 043/143] xfrm6_tunnel: Fix spi check in __xfrm6_tunnel_alloc_spi Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 044/143] Bluetooth: Fix unnecessary error message for HCI request completion Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 045/143] cw1200: Fix concurrency use-after-free bugs in cw1200_hw_scan() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 046/143] drbd: narrow rcu_read_lock in drbd_sync_handshake Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 047/143] drbd: disconnect, if the wrong UUIDs are attached on a connected peer Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 048/143] drbd: skip spurious timeout (ping-timeo) when failing promote Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 049/143] drbd: Avoid Clang warning about pointless switch statment Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 050/143] video: clps711x-fb: release disp device node in probe() Greg Kroah-Hartman
2019-02-18 13:42 ` [PATCH 4.4 051/143] fbdev: fbmem: behave better with small rotated displays and many CPUs Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 052/143] igb: Fix an issue that PME is not enabled during runtime suspend Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 053/143] fbdev: fbcon: Fix unregister crash when more than one framebuffer Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 054/143] KVM: x86: svm: report MSR_IA32_MCG_EXT_CTL as unsupported Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 055/143] NFS: nfs_compare_mount_options always compare auth flavors Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 056/143] hwmon: (lm80) fix a missing check of the status of SMBus read Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 057/143] hwmon: (lm80) fix a missing check of bus read in lm80 probe Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 058/143] seq_buf: Make seq_buf_puts() null-terminate the buffer Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 059/143] crypto: ux500 - Use proper enum in cryp_set_dma_transfer Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 060/143] crypto: ux500 - Use proper enum in hash_set_dma_transfer Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 061/143] cifs: check ntwrk_buf_start for NULL before dereferencing it Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 062/143] um: Avoid marking pages with "changed protection" Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 063/143] niu: fix missing checks of niu_pci_eeprom_read Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 064/143] scripts/decode_stacktrace: only strip base path when a prefix of the path Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 065/143] ocfs2: dont clear bh uptodate for block read Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 066/143] isdn: hisax: hfc_pci: Fix a possible concurrency use-after-free bug in HFCPCI_l1hw() Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 067/143] gdrom: fix a memory leak bug Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 068/143] block/swim3: Fix -EBUSY error when re-opening device after unmount Greg Kroah-Hartman
2019-02-18 13:43 ` Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 069/143] HID: lenovo: Add checks to fix of_led_classdev_register Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 070/143] kernel/hung_task.c: break RCU locks based on jiffies Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 071/143] fs/epoll: drop ovflist branch prediction Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 072/143] exec: load_script: dont blindly truncate shebang string Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 073/143] thermal: hwmon: inline helpers when CONFIG_THERMAL_HWMON is not set Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 074/143] test_hexdump: use memcpy instead of strncpy Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 075/143] tipc: use destination length for copy string Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 076/143] string: drop __must_check from strscpy() and restore strscpy() usages in cgroup Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 077/143] dccp: fool proof ccid_hc_[rt]x_parse_options() Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 078/143] enic: fix checksum validation for IPv6 Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 079/143] net: dp83640: expire old TX-skb Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 080/143] skge: potential memory corruption in skge_get_regs() Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 081/143] net: systemport: Fix WoL with password after deep sleep Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 082/143] net: dsa: slave: Dont propagate flag changes on down slave interfaces Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 083/143] ALSA: compress: Fix stop handling on compressed capture streams Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 084/143] ALSA: hda - Serialize codec registrations Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 085/143] fuse: call pipe_buf_release() under pipe lock Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 086/143] fuse: decrement NR_WRITEBACK_TEMP on the right page Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 087/143] fuse: handle zero sized retrieve correctly Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 088/143] dmaengine: imx-dma: fix wrong callback invoke Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 089/143] usb: phy: am335x: fix race condition in _probe Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 090/143] usb: gadget: udc: net2272: Fix bitwise and boolean operations Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 091/143] scsi: aic94xx: fix module loading Greg Kroah-Hartman
2019-02-18 15:23 ` James Bottomley
2019-02-18 16:11 ` Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 092/143] KVM: x86: work around leak of uninitialized stack contents (CVE-2019-7222) Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 093/143] KVM: nVMX: unconditionally cancel preemption timer in free_nested (CVE-2019-7221) Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 094/143] perf/x86/intel/uncore: Add Node ID mask Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 095/143] x86/MCE: Initialize mce.bank in the case of a fatal error in mce_no_way_out() Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 096/143] perf/core: Dont WARN() for impossible ring-buffer sizes Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 097/143] perf tests evsel-tp-sched: Fix bitwise operator Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 098/143] mtd: rawnand: gpmi: fix MX28 bus master lockup problem Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 099/143] signal: Always notice exiting tasks Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 100/143] signal: Better detection of synchronous signals Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 101/143] misc: vexpress: Off by one in vexpress_syscfg_exec() Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 102/143] debugfs: fix debugfs_rename parameter checking Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 103/143] mips: cm: reprime error cause Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 104/143] MIPS: OCTEON: dont set octeon_dma_bar_type if PCI is disabled Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 105/143] MIPS: VDSO: Include $(ccflags-vdso) in o32,n32 .lds builds Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 106/143] ARM: iop32x/n2100: fix PCI IRQ mapping Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 107/143] mac80211: ensure that mgmt tx skbs have tailroom for encryption Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 108/143] drm/modes: Prevent division by zero htotal Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 109/143] drm/vmwgfx: Fix setting of dma masks Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 110/143] drm/vmwgfx: Return error code from vmw_execbuf_copy_fence_user Greg Kroah-Hartman
2019-02-18 13:43 ` [PATCH 4.4 111/143] HID: debug: fix the ring buffer implementation Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 112/143] NFC: nxp-nci: Include unaligned.h instead of access_ok.h Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 113/143] Revert "cifs: In Kconfig CONFIG_CIFS_POSIX needs depends on legacy (insecure cifs)" Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 114/143] libceph: avoid KEEPALIVE_PENDING races in ceph_con_keepalive() Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 115/143] xfrm: refine validation of template and selector families Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 116/143] batman-adv: Avoid WARN on net_device without parent in netns Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 117/143] batman-adv: Force mac header to start of data on xmit Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 118/143] Revert "exec: load_script: dont blindly truncate shebang string" Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 119/143] uapi/if_ether.h: prevent redefinition of struct ethhdr Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 120/143] ARM: dts: da850-evm: Correct the sound card name Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 121/143] ARM: dts: kirkwood: Fix polarity of GPIO fan lines Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 122/143] gpio: pl061: handle failed allocations Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 123/143] cifs: Limit memory used by lock request calls to a page Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 124/143] Documentation/network: reword kernel version reference Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 125/143] Revert "Input: elan_i2c - add ACPI ID for touchpad in ASUS Aspire F5-573G" Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 126/143] Input: elan_i2c - add ACPI ID for touchpad in Lenovo V330-15ISK Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 127/143] perf/core: Fix impossible ring-buffer sizes warning Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 128/143] ALSA: hda - Add quirk for HP EliteBook 840 G5 Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 129/143] ALSA: usb-audio: Fix implicit fb endpoint setup by quirk Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 130/143] Input: bma150 - register input device after setting private data Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 131/143] Input: elantech - enable 3rd button support on Fujitsu CELSIUS H780 Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 132/143] alpha: fix page fault handling for r16-r18 targets Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 133/143] alpha: Fix Eiger NR_IRQS to 128 Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 134/143] tracing/uprobes: Fix output for multiple string arguments Greg Kroah-Hartman
2019-02-18 13:44 ` Greg Kroah-Hartman [this message]
2019-02-18 13:44 ` [PATCH 4.4 136/143] signal: Restore the stop PTRACE_EVENT_EXIT Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 137/143] x86/a.out: Clear the dump structure initially Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 138/143] dm thin: fix bug where bio that overwrites thin block ignores FUA Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 139/143] smsc95xx: Use skb_cow_head to deal with cloned skbs Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 140/143] ch9200: use skb_cow_head() " Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 141/143] kaweth: " Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 142/143] usb: dwc2: Remove unnecessary kfree Greg Kroah-Hartman
2019-02-18 13:44 ` [PATCH 4.4 143/143] pinctrl: msm: fix gpio-hog related boot issues Greg Kroah-Hartman
2019-02-18 17:59 ` [PATCH 4.4 000/143] 4.4.175-stable review kernelci.org bot
2019-02-18 18:38 ` Naresh Kamboju
2019-02-19 9:30 ` Jon Hunter
2019-02-19 9:30 ` Jon Hunter
2019-02-19 17:26 ` Guenter Roeck
2019-02-20 0:16 ` 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=20190218133533.912603392@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=andy@infradead.org \
--cc=ard.biesheuvel@linaro.org \
--cc=bhsharma@redhat.com \
--cc=bp@suse.de \
--cc=dvhart@infradead.org \
--cc=hedi.berriche@hpe.com \
--cc=hpa@zytor.com \
--cc=linux-efi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.travis@hpe.com \
--cc=mingo@redhat.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rja@hpe.com \
--cc=sivanich@hpe.com \
--cc=stable@vger.kernel.org \
--cc=steve.wahl@hpe.com \
--cc=tglx@linutronix.de \
--cc=x86@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.