From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Marc Zyngier <marc.zyngier@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will.deacon@arm.com>
Subject: [PATCH 4.19 030/276] arm64: errata: Add workaround for Cortex-A76 erratum #1463225
Date: Wed, 29 May 2019 20:03:08 -0700 [thread overview]
Message-ID: <20190530030526.033339430@linuxfoundation.org> (raw)
In-Reply-To: <20190530030523.133519668@linuxfoundation.org>
From: Will Deacon <will.deacon@arm.com>
commit 969f5ea627570e91c9d54403287ee3ed657f58fe upstream.
Revisions of the Cortex-A76 CPU prior to r4p0 are affected by an erratum
that can prevent interrupts from being taken when single-stepping.
This patch implements a software workaround to prevent userspace from
effectively being able to disable interrupts.
Cc: <stable@vger.kernel.org>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
Documentation/arm64/silicon-errata.txt | 1
arch/arm64/Kconfig | 18 ++++++++++++++++
arch/arm64/include/asm/cpucaps.h | 3 +-
arch/arm64/include/asm/cputype.h | 2 +
arch/arm64/kernel/cpu_errata.c | 24 +++++++++++++++++++++
arch/arm64/kernel/syscall.c | 31 +++++++++++++++++++++++++++
arch/arm64/mm/fault.c | 37 +++++++++++++++++++++++++++++++--
7 files changed, 113 insertions(+), 3 deletions(-)
--- a/Documentation/arm64/silicon-errata.txt
+++ b/Documentation/arm64/silicon-errata.txt
@@ -58,6 +58,7 @@ stable kernels.
| ARM | Cortex-A72 | #853709 | N/A |
| ARM | Cortex-A73 | #858921 | ARM64_ERRATUM_858921 |
| ARM | Cortex-A55 | #1024718 | ARM64_ERRATUM_1024718 |
+| ARM | Cortex-A76 | #1463225 | ARM64_ERRATUM_1463225 |
| ARM | MMU-500 | #841119,#826419 | N/A |
| | | | |
| Cavium | ThunderX ITS | #22375, #24313 | CAVIUM_ERRATUM_22375 |
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -479,6 +479,24 @@ config ARM64_ERRATUM_1024718
If unsure, say Y.
+config ARM64_ERRATUM_1463225
+ bool "Cortex-A76: Software Step might prevent interrupt recognition"
+ default y
+ help
+ This option adds a workaround for Arm Cortex-A76 erratum 1463225.
+
+ On the affected Cortex-A76 cores (r0p0 to r3p1), software stepping
+ of a system call instruction (SVC) can prevent recognition of
+ subsequent interrupts when software stepping is disabled in the
+ exception handler of the system call and either kernel debugging
+ is enabled or VHE is in use.
+
+ Work around the erratum by triggering a dummy step exception
+ when handling a system call from a task that is being stepped
+ in a VHE configuration of the kernel.
+
+ If unsure, say Y.
+
config CAVIUM_ERRATUM_22375
bool "Cavium erratum 22375, 24313"
default y
--- a/arch/arm64/include/asm/cpucaps.h
+++ b/arch/arm64/include/asm/cpucaps.h
@@ -51,7 +51,8 @@
#define ARM64_SSBD 30
#define ARM64_MISMATCHED_CACHE_TYPE 31
#define ARM64_HAS_STAGE2_FWB 32
+#define ARM64_WORKAROUND_1463225 33
-#define ARM64_NCAPS 33
+#define ARM64_NCAPS 34
#endif /* __ASM_CPUCAPS_H */
--- a/arch/arm64/include/asm/cputype.h
+++ b/arch/arm64/include/asm/cputype.h
@@ -86,6 +86,7 @@
#define ARM_CPU_PART_CORTEX_A75 0xD0A
#define ARM_CPU_PART_CORTEX_A35 0xD04
#define ARM_CPU_PART_CORTEX_A55 0xD05
+#define ARM_CPU_PART_CORTEX_A76 0xD0B
#define APM_CPU_PART_POTENZA 0x000
@@ -110,6 +111,7 @@
#define MIDR_CORTEX_A75 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A75)
#define MIDR_CORTEX_A35 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A35)
#define MIDR_CORTEX_A55 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A55)
+#define MIDR_CORTEX_A76 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A76)
#define MIDR_THUNDERX MIDR_CPU_MODEL(ARM_CPU_IMP_CAVIUM, CAVIUM_CPU_PART_THUNDERX)
#define MIDR_THUNDERX_81XX MIDR_CPU_MODEL(ARM_CPU_IMP_CAVIUM, CAVIUM_CPU_PART_THUNDERX_81XX)
#define MIDR_THUNDERX_83XX MIDR_CPU_MODEL(ARM_CPU_IMP_CAVIUM, CAVIUM_CPU_PART_THUNDERX_83XX)
--- a/arch/arm64/kernel/cpu_errata.c
+++ b/arch/arm64/kernel/cpu_errata.c
@@ -411,6 +411,22 @@ static bool has_ssbd_mitigation(const st
}
#endif /* CONFIG_ARM64_SSBD */
+#ifdef CONFIG_ARM64_ERRATUM_1463225
+DEFINE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
+
+static bool
+has_cortex_a76_erratum_1463225(const struct arm64_cpu_capabilities *entry,
+ int scope)
+{
+ u32 midr = read_cpuid_id();
+ /* Cortex-A76 r0p0 - r3p1 */
+ struct midr_range range = MIDR_RANGE(MIDR_CORTEX_A76, 0, 0, 3, 1);
+
+ WARN_ON(scope != SCOPE_LOCAL_CPU || preemptible());
+ return is_midr_in_range(midr, &range) && is_kernel_in_hyp_mode();
+}
+#endif
+
#define CAP_MIDR_RANGE(model, v_min, r_min, v_max, r_max) \
.matches = is_affected_midr_range, \
.midr_range = MIDR_RANGE(model, v_min, r_min, v_max, r_max)
@@ -680,6 +696,14 @@ const struct arm64_cpu_capabilities arm6
.matches = has_ssbd_mitigation,
},
#endif
+#ifdef CONFIG_ARM64_ERRATUM_1463225
+ {
+ .desc = "ARM erratum 1463225",
+ .capability = ARM64_WORKAROUND_1463225,
+ .type = ARM64_CPUCAP_LOCAL_CPU_ERRATUM,
+ .matches = has_cortex_a76_erratum_1463225,
+ },
+#endif
{
}
};
--- a/arch/arm64/kernel/syscall.c
+++ b/arch/arm64/kernel/syscall.c
@@ -8,6 +8,7 @@
#include <linux/syscalls.h>
#include <asm/daifflags.h>
+#include <asm/debug-monitors.h>
#include <asm/fpsimd.h>
#include <asm/syscall.h>
#include <asm/thread_info.h>
@@ -60,6 +61,35 @@ static inline bool has_syscall_work(unsi
int syscall_trace_enter(struct pt_regs *regs);
void syscall_trace_exit(struct pt_regs *regs);
+#ifdef CONFIG_ARM64_ERRATUM_1463225
+DECLARE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
+
+static void cortex_a76_erratum_1463225_svc_handler(void)
+{
+ u32 reg, val;
+
+ if (!unlikely(test_thread_flag(TIF_SINGLESTEP)))
+ return;
+
+ if (!unlikely(this_cpu_has_cap(ARM64_WORKAROUND_1463225)))
+ return;
+
+ __this_cpu_write(__in_cortex_a76_erratum_1463225_wa, 1);
+ reg = read_sysreg(mdscr_el1);
+ val = reg | DBG_MDSCR_SS | DBG_MDSCR_KDE;
+ write_sysreg(val, mdscr_el1);
+ asm volatile("msr daifclr, #8");
+ isb();
+
+ /* We will have taken a single-step exception by this point */
+
+ write_sysreg(reg, mdscr_el1);
+ __this_cpu_write(__in_cortex_a76_erratum_1463225_wa, 0);
+}
+#else
+static void cortex_a76_erratum_1463225_svc_handler(void) { }
+#endif /* CONFIG_ARM64_ERRATUM_1463225 */
+
static void el0_svc_common(struct pt_regs *regs, int scno, int sc_nr,
const syscall_fn_t syscall_table[])
{
@@ -68,6 +98,7 @@ static void el0_svc_common(struct pt_reg
regs->orig_x0 = regs->regs[0];
regs->syscallno = scno;
+ cortex_a76_erratum_1463225_svc_handler();
local_daif_restore(DAIF_PROCCTX);
user_exit();
--- a/arch/arm64/mm/fault.c
+++ b/arch/arm64/mm/fault.c
@@ -827,14 +827,47 @@ void __init hook_debug_fault_code(int nr
debug_fault_info[nr].name = name;
}
+#ifdef CONFIG_ARM64_ERRATUM_1463225
+DECLARE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
+
+static int __exception
+cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
+{
+ if (user_mode(regs))
+ return 0;
+
+ if (!__this_cpu_read(__in_cortex_a76_erratum_1463225_wa))
+ return 0;
+
+ /*
+ * We've taken a dummy step exception from the kernel to ensure
+ * that interrupts are re-enabled on the syscall path. Return back
+ * to cortex_a76_erratum_1463225_svc_handler() with debug exceptions
+ * masked so that we can safely restore the mdscr and get on with
+ * handling the syscall.
+ */
+ regs->pstate |= PSR_D_BIT;
+ return 1;
+}
+#else
+static int __exception
+cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
+{
+ return 0;
+}
+#endif /* CONFIG_ARM64_ERRATUM_1463225 */
+
asmlinkage int __exception do_debug_exception(unsigned long addr_if_watchpoint,
- unsigned int esr,
- struct pt_regs *regs)
+ unsigned int esr,
+ struct pt_regs *regs)
{
const struct fault_info *inf = debug_fault_info + DBG_ESR_EVT(esr);
unsigned long pc = instruction_pointer(regs);
int rv;
+ if (cortex_a76_erratum_1463225_debug_handler(regs))
+ return 0;
+
/*
* Tell lockdep we disabled irqs in entry.S. Do nothing if they were
* already disabled to preserve the last enabled/disabled addresses.
next prev parent reply other threads:[~2019-05-30 4:13 UTC|newest]
Thread overview: 304+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-30 3:02 [PATCH 4.19 000/276] 4.19.47-stable review Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 001/276] x86: Hide the int3_emulate_call/jmp functions from UML Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 002/276] ext4: do not delete unlinked inode from orphan list on failed truncate Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 003/276] ext4: wait for outstanding dio during truncate in nojournal mode Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 004/276] f2fs: Fix use of number of devices Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 005/276] KVM: x86: fix return value for reserved EFER Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 006/276] bio: fix improper use of smp_mb__before_atomic() Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 007/276] sbitmap: " Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 008/276] Revert "scsi: sd: Keep disk read-only when re-reading partition" Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 009/276] crypto: vmx - CTR: always increment IV as quadword Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 010/276] mmc: sdhci-iproc: cygnus: Set NO_HISPD bit to fix HS50 data hold time problem Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 011/276] mmc: sdhci-iproc: " Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 012/276] kvm: svm/avic: fix off-by-one in checking host APIC ID Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 013/276] libnvdimm/pmem: Bypass CONFIG_HARDENED_USERCOPY overhead Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 014/276] arm64/kernel: kaslr: reduce module randomization range to 2 GB Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 015/276] arm64/iommu: handle non-remapped addresses in ->mmap and ->get_sgtable Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 016/276] gfs2: Fix sign extension bug in gfs2_update_stats Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 017/276] btrfs: dont double unlock on error in btrfs_punch_hole Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 018/276] Btrfs: do not abort transaction at btrfs_update_root() after failure to COW path Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 019/276] Btrfs: avoid fallback to transaction commit during fsync of files with holes Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 020/276] Btrfs: fix race between ranged fsync and writeback of adjacent ranges Greg Kroah-Hartman
2019-05-30 3:02 ` [PATCH 4.19 021/276] btrfs: sysfs: Fix error path kobject memory leak Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 022/276] btrfs: sysfs: dont leak memory when failing add fsid Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 023/276] udlfb: fix some inconsistent NULL checking Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 024/276] fbdev: fix divide error in fb_var_to_videomode Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 025/276] NFSv4.2 fix unnecessary retry in nfs4_copy_file_range Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 026/276] NFSv4.1 fix incorrect return value in copy_file_range Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 027/276] bpf: add bpf_jit_limit knob to restrict unpriv allocations Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 028/276] brcmfmac: assure SSID length from firmware is limited Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 029/276] brcmfmac: add subtype check for event handling in data path Greg Kroah-Hartman
2019-05-30 3:03 ` Greg Kroah-Hartman [this message]
2019-05-30 3:03 ` [PATCH 4.19 031/276] btrfs: honor path->skip_locking in backref code Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 032/276] ovl: relax WARN_ON() for overlapping layers use case Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 033/276] fbdev: fix WARNING in __alloc_pages_nodemask bug Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 034/276] media: cpia2: Fix use-after-free in cpia2_exit Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 035/276] media: serial_ir: Fix use-after-free in serial_ir_init_module Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 036/276] media: vb2: add waiting_in_dqbuf flag Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 037/276] media: vivid: use vfree() instead of kfree() for dev->bitmap_cap Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 038/276] ssb: Fix possible NULL pointer dereference in ssb_host_pcmcia_exit Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 039/276] bpf: devmap: fix use-after-free Read in __dev_map_entry_free Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 040/276] batman-adv: mcast: fix multicast tt/tvlv worker locking Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 041/276] at76c50x-usb: Dont register led_trigger if usb_register_driver failed Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 042/276] acct_on(): dont mess with freeze protection Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 043/276] Revert "btrfs: Honour FITRIM range constraints during free space trim" Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 044/276] gfs2: Fix lru_count going negative Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 045/276] cxgb4: Fix error path in cxgb4_init_module Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 046/276] NFS: make nfs_match_client killable Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 047/276] IB/hfi1: Fix WQ_MEM_RECLAIM warning Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 048/276] gfs2: Fix occasional glock use-after-free Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 049/276] mmc: core: Verify SD bus width Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 050/276] tools/bpf: fix perf build error with uClibc (seen on ARC) Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 051/276] selftests/bpf: set RLIMIT_MEMLOCK properly for test_libbpf_open.c Greg Kroah-Hartman
2019-05-30 21:05 ` Pavel Machek
2019-05-30 3:03 ` [PATCH 4.19 052/276] bpftool: exclude bash-completion/bpftool from .gitignore pattern Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 053/276] dmaengine: tegra210-dma: free dma controller in remove() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 054/276] net: ena: gcc 8: fix compilation warning Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 055/276] hv_netvsc: fix race that may miss tx queue wakeup Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 056/276] Bluetooth: Ignore CC events not matching the last HCI command Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 057/276] pinctrl: zte: fix leaked of_node references Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 058/276] ASoC: Intel: kbl_da7219_max98357a: Map BTN_0 to KEY_PLAYPAUSE Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 059/276] usb: dwc2: gadget: Increase descriptors count for ISOCs Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 060/276] usb: dwc3: move synchronize_irq() out of the spinlock protected block Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 061/276] ASoC: hdmi-codec: unlock the device on startup errors Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 062/276] powerpc/perf: Return accordingly on invalid chip-id in Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 063/276] powerpc/boot: Fix missing check of lseek() return value Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 064/276] powerpc/perf: Fix loop exit condition in nest_imc_event_init Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 065/276] ASoC: imx: fix fiq dependencies Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 066/276] spi: pxa2xx: fix SCR (divisor) calculation Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 067/276] brcm80211: potential NULL dereference in brcmf_cfg80211_vndr_cmds_dcmd_handler() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 068/276] ACPI / property: fix handling of data_nodes in acpi_get_next_subnode() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 069/276] drm/nouveau/bar/nv50: ensure BAR is mapped Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 070/276] media: stm32-dcmi: return appropriate error codes during probe Greg Kroah-Hartman
2019-05-31 8:19 ` Pavel Machek
2019-05-31 8:39 ` Fabien DESSENNE
2019-05-31 9:31 ` Pavel Machek
2019-05-30 3:03 ` [PATCH 4.19 071/276] ARM: vdso: Remove dependency with the arch_timer driver internals Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 072/276] arm64: Fix compiler warning from pte_unmap() with -Wunused-but-set-variable Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 073/276] powerpc/watchdog: Use hrtimers for per-CPU heartbeat Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 074/276] sched/cpufreq: Fix kobject memleak Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 075/276] scsi: qla2xxx: Fix a qla24xx_enable_msix() error path Greg Kroah-Hartman
2019-05-31 8:59 ` Pavel Machek
2019-05-31 13:56 ` Bart Van Assche
2019-05-30 3:03 ` [PATCH 4.19 076/276] scsi: qla2xxx: Fix abort handling in tcm_qla2xxx_write_pending() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 077/276] scsi: qla2xxx: Avoid that lockdep complains about unsafe locking in tcm_qla2xxx_close_session() Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 078/276] scsi: qla2xxx: Fix hardirq-unsafe locking Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 079/276] x86/modules: Avoid breaking W^X while loading modules Greg Kroah-Hartman
2019-05-31 10:37 ` Pavel Machek
2019-05-31 21:47 ` Nadav Amit
2019-05-30 3:03 ` [PATCH 4.19 080/276] Btrfs: fix data bytes_may_use underflow with fallocate due to failed quota reserve Greg Kroah-Hartman
2019-05-30 3:03 ` [PATCH 4.19 081/276] btrfs: fix panic during relocation after ENOSPC before writeback happens Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 082/276] btrfs: Dont panic when we cant find a root key Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 083/276] iwlwifi: pcie: dont crash on invalid RX interrupt Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 084/276] rtc: 88pm860x: prevent use-after-free on device remove Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 085/276] rtc: stm32: manage the get_irq probe defer case Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 086/276] scsi: qedi: Abort ep termination if offload not scheduled Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 087/276] s390/kexec_file: Fix detection of text segment in ELF loader Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 088/276] sched/nohz: Run NOHZ idle load balancer on HK_FLAG_MISC CPUs Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 089/276] w1: fix the resume command API Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 090/276] s390: qeth: address type mismatch warning Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 091/276] dmaengine: pl330: _stop: clear interrupt status Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 092/276] mac80211/cfg80211: update bss channel on channel switch Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 093/276] libbpf: fix samples/bpf build failure due to undefined UINT32_MAX Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 094/276] slimbus: fix a potential NULL pointer dereference in of_qcom_slim_ngd_register Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 095/276] ASoC: fsl_sai: Update is_slave_mode with correct value Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 096/276] mwifiex: prevent an array overflow Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 097/276] rsi: Fix NULL pointer dereference in kmalloc Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 098/276] net: cw1200: fix a NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 099/276] nvme: set 0 capacity if namespace block size exceeds PAGE_SIZE Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 100/276] nvme-rdma: fix a NULL deref when an admin connect times out Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 101/276] crypto: sun4i-ss - Fix invalid calculation of hash end Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 102/276] bcache: avoid potential memleak of list of journal_replay(s) in the CACHE_SYNC branch of run_cache_set Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 103/276] bcache: return error immediately in bch_journal_replay() Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 104/276] bcache: fix failure in journal relplay Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 105/276] bcache: add failure check to run_cache_set() for journal replay Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 106/276] bcache: avoid clang -Wunintialized warning Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 107/276] RDMA/cma: Consider scope_id while binding to ipv6 ll address Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 108/276] vfio-ccw: Do not call flush_workqueue while holding the spinlock Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 109/276] vfio-ccw: Release any channel program when releasing/removing vfio-ccw mdev Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 110/276] x86/build: Move _etext to actual end of .text Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 111/276] smpboot: Place the __percpu annotation correctly Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 112/276] x86/mm: Remove in_nmi() warning from 64-bit implementation of vmalloc_fault() Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 113/276] mm/uaccess: Use unsigned long to placate UBSAN warnings on older GCC versions Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 114/276] Bluetooth: hci_qca: Give enough time to ROME controller to bootup Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 115/276] HID: logitech-hidpp: use RAP instead of FAP to get the protocol version Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 116/276] pinctrl: pistachio: fix leaked of_node references Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 117/276] pinctrl: samsung: " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 118/276] clk: rockchip: undo several noc and special clocks as critical on rk3288 Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 119/276] perf/arm-cci: Remove broken race mitigation Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 120/276] dmaengine: at_xdmac: remove BUG_ON macro in tasklet Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 121/276] media: coda: clear error return value before picture run Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 122/276] media: ov6650: Move v4l2_clk_get() to ov6650_video_probe() helper Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 123/276] media: au0828: stop video streaming only when last user stops Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 124/276] media: ov2659: make S_FMT succeed even if requested format doesnt match Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 125/276] audit: fix a memory leak bug Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 126/276] media: stm32-dcmi: fix crash when subdev do not expose any formats Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 127/276] media: au0828: Fix NULL pointer dereference in au0828_analog_stream_enable() Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 128/276] media: pvrusb2: Prevent a buffer overflow Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 129/276] iio: adc: stm32-dfsdm: fix unmet direct dependencies detected Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 130/276] block: fix use-after-free on gendisk Greg Kroah-Hartman
2019-06-01 7:27 ` Pavel Machek
2019-06-01 14:25 ` Bart Van Assche
2019-05-30 3:04 ` [PATCH 4.19 131/276] powerpc/numa: improve control of topology updates Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 132/276] powerpc/64: Fix booting large kernels with STRICT_KERNEL_RWX Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 133/276] random: fix CRNG initialization when random.trust_cpu=1 Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 134/276] random: add a spinlock_t to struct batched_entropy Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 135/276] cgroup: protect cgroup->nr_(dying_)descendants by css_set_lock Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 136/276] sched/core: Check quota and period overflow at usec to nsec conversion Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 137/276] sched/rt: Check integer " Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 138/276] sched/core: Handle overflow in cpu_shares_write_u64 Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 139/276] staging: vc04_services: handle kzalloc failure Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 140/276] drm/msm: a5xx: fix possible object reference leak Greg Kroah-Hartman
2019-05-30 3:04 ` [PATCH 4.19 141/276] irq_work: Do not raise an IPI when queueing work on the local CPU Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 142/276] thunderbolt: Take domain lock in switch sysfs attribute callbacks Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 143/276] s390/qeth: handle error from qeth_update_from_chp_desc() Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 144/276] USB: core: Dont unbind interfaces following device reset failure Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 145/276] x86/irq/64: Limit IST stack overflow check to #DB stack Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 146/276] drm: etnaviv: avoid DMA API warning when importing buffers Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 147/276] phy: sun4i-usb: Make sure to disable PHY0 passby for peripheral mode Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 148/276] phy: mapphone-mdm6600: add gpiolib dependency Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 149/276] i40e: Able to add up to 16 MAC filters on an untrusted VF Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 150/276] i40e: dont allow changes to HW VLAN stripping on active port VLANs Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 151/276] ACPI/IORT: Reject platform device creation on NUMA node mapping failure Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 152/276] arm64: vdso: Fix clock_getres() for CLOCK_REALTIME Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 153/276] RDMA/cxgb4: Fix null pointer dereference on alloc_skb failure Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 154/276] perf/x86/msr: Add Icelake support Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 155/276] perf/x86/intel/rapl: " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 156/276] perf/x86/intel/cstate: " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 157/276] hwmon: (vt1211) Use request_muxed_region for Super-IO accesses Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 158/276] hwmon: (smsc47m1) " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 159/276] hwmon: (smsc47b397) " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 160/276] hwmon: (pc87427) " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 161/276] hwmon: (f71805f) " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 162/276] scsi: libsas: Do discovery on empty PHY to update PHY info Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 163/276] mmc: core: make pwrseq_emmc (partially) support sleepy GPIO controllers Greg Kroah-Hartman
2019-06-06 13:15 ` Pavel Machek
2019-05-30 3:05 ` [PATCH 4.19 164/276] mmc_spi: add a status check for spi_sync_locked Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 165/276] mmc: sdhci-of-esdhc: add erratum eSDHC5 support Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 166/276] mmc: sdhci-of-esdhc: add erratum A-009204 support Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 167/276] mmc: sdhci-of-esdhc: add erratum eSDHC-A001 and A-008358 support Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 168/276] drm/amdgpu: fix old fence check in amdgpu_fence_emit Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 169/276] PM / core: Propagate dev->power.wakeup_path when no callbacks Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 170/276] clk: rockchip: Fix video codec clocks on rk3288 Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 171/276] extcon: arizona: Disable mic detect if running when driver is removed Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 172/276] clk: rockchip: Make rkpwm a critical clock on rk3288 Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 173/276] s390: zcrypt: initialize variables before_use Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 174/276] x86/microcode: Fix the ancient deprecated microcode loading method Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 175/276] s390/mm: silence compiler warning when compiling without CONFIG_PGSTE Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 176/276] s390: cio: fix cio_irb declaration Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 177/276] selftests: cgroup: fix cleanup path in test_memcg_subtree_control() Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 178/276] qmi_wwan: Add quirk for Quectel dynamic config Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 179/276] cpufreq: ppc_cbe: fix possible object reference leak Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 180/276] cpufreq/pasemi: " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 181/276] cpufreq: pmac32: " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 182/276] cpufreq: kirkwood: " Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 183/276] block: sed-opal: fix IOC_OPAL_ENABLE_DISABLE_MBR Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 184/276] x86/build: Keep local relocations with ld.lld Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 185/276] drm/pl111: fix possible object reference leak Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 186/276] iio: ad_sigma_delta: Properly handle SPI bus locking vs CS assertion Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 187/276] iio: hmc5843: fix potential NULL pointer dereferences Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 188/276] iio: common: ssp_sensors: Initialize calculated_time in ssp_common_process_data Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 189/276] iio: adc: ti-ads7950: Fix improper use of mlock Greg Kroah-Hartman
2019-06-06 13:13 ` Pavel Machek
2019-06-06 14:56 ` Jonathan Cameron
2019-05-30 3:05 ` [PATCH 4.19 190/276] selftests/bpf: ksym_search wont check symbols exists Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 191/276] rtlwifi: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 192/276] mwifiex: Fix mem leak in mwifiex_tm_cmd Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 193/276] brcmfmac: fix missing checks for kmemdup Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 194/276] b43: shut up clang -Wuninitialized variable warning Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 195/276] brcmfmac: convert dev_init_lock mutex to completion Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 196/276] brcmfmac: fix WARNING during USB disconnect in case of unempty psq Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 197/276] brcmfmac: fix race during disconnect when USB completion is in progress Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 198/276] brcmfmac: fix Oops when bringing up interface during USB disconnect Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 199/276] rtc: xgene: fix possible race condition Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 200/276] rtlwifi: fix potential NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:05 ` [PATCH 4.19 201/276] scsi: ufs: Fix regulator load and icc-level configuration Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 202/276] scsi: ufs: Avoid configuring regulator with undefined voltage range Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 203/276] drm/panel: otm8009a: Add delay at the end of initialization Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 204/276] arm64: cpu_ops: fix a leaked reference by adding missing of_node_put Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 205/276] wil6210: fix return code of wmi_mgmt_tx and wmi_mgmt_tx_ext Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 206/276] x86/uaccess, ftrace: Fix ftrace_likely_update() vs. SMAP Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 207/276] x86/uaccess, signal: Fix AC=1 bloat Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 208/276] x86/ia32: Fix ia32_restore_sigcontext() AC leak Greg Kroah-Hartman
2019-06-06 13:09 ` Pavel Machek
2019-05-30 3:06 ` [PATCH 4.19 209/276] x86/uaccess: Fix up the fixup Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 210/276] chardev: add additional check for minor range overlap Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 211/276] RDMA/hns: Fix bad endianess of port_pd variable Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 212/276] sh: sh7786: Add explicit I/O cast to sh7786_mm_sel() Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 213/276] HID: core: move Usage Page concatenation to Main item Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 214/276] ASoC: eukrea-tlv320: fix a leaked reference by adding missing of_node_put Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 215/276] ASoC: fsl_utils: " Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 216/276] cxgb3/l2t: Fix undefined behaviour Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 217/276] HID: logitech-hidpp: change low battery level threshold from 31 to 30 percent Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 218/276] spi: tegra114: reset controller on probe Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 219/276] kobject: Dont trigger kobject_uevent(KOBJ_REMOVE) twice Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 220/276] media: video-mux: fix null pointer dereferences Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 221/276] media: wl128x: prevent two potential buffer overflows Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 222/276] media: gspca: Kill URBs on USB device disconnect Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 223/276] efifb: Omit memory map check on legacy boot Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 224/276] thunderbolt: property: Fix a missing check of kzalloc Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 225/276] thunderbolt: Fix to check the return value of kmemdup Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 226/276] timekeeping: Force upper bound for setting CLOCK_REALTIME Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 227/276] scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 228/276] virtio_console: initialize vtermno value for ports Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 229/276] tty: ipwireless: fix missing checks for ioremap Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 230/276] overflow: Fix -Wtype-limits compilation warnings Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 231/276] x86/mce: Fix machine_check_poll() tests for error types Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 232/276] rcutorture: Fix cleanup path for invalid torture_type strings Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 233/276] x86/mce: Handle varying MCA bank counts Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 234/276] rcuperf: Fix cleanup path for invalid perf_type strings Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 235/276] usb: core: Add PM runtime calls to usb_hcd_platform_shutdown Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 236/276] scsi: qla4xxx: avoid freeing unallocated dma memory Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 237/276] scsi: lpfc: avoid uninitialized variable warning Greg Kroah-Hartman
2019-06-06 12:53 ` Pavel Machek
2019-06-06 16:00 ` Nathan Chancellor
2019-06-06 16:53 ` Greg Kroah-Hartman
2019-06-06 17:41 ` [PATCH] scsi: lpfc: Fix backport of faf5a744f4f8 ("scsi: lpfc: avoid uninitialized variable warning") Nathan Chancellor
2019-06-06 19:22 ` James Smart
2019-05-30 3:06 ` [PATCH 4.19 238/276] selinux: avoid uninitialized variable warning Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 239/276] batman-adv: allow updating DAT entry timeouts on incoming ARP Replies Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 240/276] dmaengine: tegra210-adma: use devm_clk_*() helpers Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 241/276] hwrng: omap - Set default quality Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 242/276] thunderbolt: Fix to check return value of ida_simple_get Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 243/276] thunderbolt: Fix to check for kmemdup failure Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 244/276] drm/amd/display: fix releasing planes when exiting odm Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 245/276] thunderbolt: property: Fix a NULL pointer dereference Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 246/276] e1000e: Disable runtime PM on CNP+ Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 247/276] tinydrm/mipi-dbi: Use dma-safe buffers for all SPI transfers Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 248/276] igb: Exclude device from suspend direct complete optimization Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 249/276] media: si2165: fix a missing check of return value Greg Kroah-Hartman
2019-06-06 12:50 ` Pavel Machek
2019-05-30 3:06 ` [PATCH 4.19 250/276] media: dvbsky: Avoid leaking dvb frontend Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 251/276] media: m88ds3103: serialize reset messages in m88ds3103_set_frontend Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 252/276] media: staging: davinci_vpfe: disallow building with COMPILE_TEST Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 253/276] drm/amd/display: Fix Divide by 0 in memory calculations Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 254/276] drm/amd/display: Set stream->mode_changed when connectors change Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 255/276] scsi: ufs: fix a missing check of devm_reset_control_get Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 256/276] media: vimc: stream: fix thread state before sleep Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 257/276] media: gspca: do not resubmit URBs when streaming has stopped Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 258/276] media: go7007: avoid clang frame overflow warning with KASAN Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 259/276] media: vimc: zero the media_device on probe Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 260/276] scsi: lpfc: Fix FDMI manufacturer attribute value Greg Kroah-Hartman
2019-05-30 3:06 ` [PATCH 4.19 261/276] scsi: lpfc: Fix fc4type information for FDMI Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 262/276] media: saa7146: avoid high stack usage with clang Greg Kroah-Hartman
2019-06-06 11:44 ` Pavel Machek
2019-06-06 11:47 ` Hans Verkuil
2019-05-30 3:07 ` [PATCH 4.19 263/276] scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 264/276] spi : spi-topcliff-pch: Fix to handle empty DMA buffers Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 265/276] drm/omap: dsi: Fix PM for display blank with paired dss_pll calls Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 266/276] spi: rspi: Fix sequencer reset during initialization Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 267/276] spi: imx: stop buffer overflow in RX FIFO flush Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 268/276] spi: Fix zero length xfer bug Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 269/276] ASoC: davinci-mcasp: Fix clang warning without CONFIG_PM Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 270/276] drm/v3d: Handle errors from IRQ setup Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 271/276] drm/drv: Hold ref on parent device during drm_device lifetime Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 272/276] drm: Wake up next in drm_read() chain if we are forced to putback the event Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 273/276] drm/sun4i: dsi: Change the start delay calculation Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 274/276] vfio-ccw: Prevent quiesce function going into an infinite loop Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 275/276] drm/sun4i: dsi: Enforce boundaries on the start delay Greg Kroah-Hartman
2019-05-30 3:07 ` [PATCH 4.19 276/276] NFS: Fix a double unlock from nfs_match,get_client Greg Kroah-Hartman
2019-05-30 7:09 ` [PATCH 4.19 000/276] 4.19.47-stable review kernelci.org bot
2019-05-30 13:22 ` Jon Hunter
2019-05-30 19:34 ` shuah
2019-05-30 19:56 ` Guenter Roeck
2019-05-31 5:19 ` Naresh Kamboju
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190530030526.033339430@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=catalin.marinas@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=marc.zyngier@arm.com \
--cc=stable@vger.kernel.org \
--cc=will.deacon@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).