From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Martin Schwidefsky <schwidefsky@de.ibm.com>
Subject: [PATCH 4.16 056/161] s390: move expoline assembler macros to a header
Date: Thu, 24 May 2018 11:38:01 +0200 [thread overview]
Message-ID: <20180524093025.191893427@linuxfoundation.org> (raw)
In-Reply-To: <20180524093018.331893860@linuxfoundation.org>
4.16-stable review patch. If anyone has any objections, please let me know.
------------------
From: Martin Schwidefsky <schwidefsky@de.ibm.com>
[ Upstream commit 6dd85fbb87d1d6b87a3b1f02ca28d7b2abd2e7ba ]
To be able to use the expoline branches in different assembler
files move the associated macros from entry.S to a new header
nospec-insn.h.
While we are at it make the macros a bit nicer to use.
Cc: stable@vger.kernel.org # 4.16
Fixes: f19fbd5ed6 ("s390: introduce execute-trampolines for branches")
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/s390/include/asm/nospec-insn.h | 127 ++++++++++++++++++++++++++++++++++++
arch/s390/kernel/entry.S | 105 ++++++-----------------------
2 files changed, 151 insertions(+), 81 deletions(-)
create mode 100644 arch/s390/include/asm/nospec-insn.h
--- /dev/null
+++ b/arch/s390/include/asm/nospec-insn.h
@@ -0,0 +1,127 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _ASM_S390_NOSPEC_ASM_H
+#define _ASM_S390_NOSPEC_ASM_H
+
+#include <asm/dwarf.h>
+
+#ifdef __ASSEMBLY__
+
+#ifdef CONFIG_EXPOLINE
+
+/*
+ * The expoline macros are used to create thunks in the same format
+ * as gcc generates them. The 'comdat' section flag makes sure that
+ * the various thunks are merged into a single copy.
+ */
+ .macro __THUNK_PROLOG_NAME name
+ .pushsection .text.\name,"axG",@progbits,\name,comdat
+ .globl \name
+ .hidden \name
+ .type \name,@function
+\name:
+ CFI_STARTPROC
+ .endm
+
+ .macro __THUNK_EPILOG
+ CFI_ENDPROC
+ .popsection
+ .endm
+
+ .macro __THUNK_PROLOG_BR r1,r2
+ __THUNK_PROLOG_NAME __s390x_indirect_jump_r\r2\()use_r\r1
+ .endm
+
+ .macro __THUNK_BR r1,r2
+ jg __s390x_indirect_jump_r\r2\()use_r\r1
+ .endm
+
+ .macro __THUNK_BRASL r1,r2,r3
+ brasl \r1,__s390x_indirect_jump_r\r3\()use_r\r2
+ .endm
+
+ .macro __DECODE_RR expand,reg,ruse
+ .set __decode_fail,1
+ .irp r1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ .ifc \reg,%r\r1
+ .irp r2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ .ifc \ruse,%r\r2
+ \expand \r1,\r2
+ .set __decode_fail,0
+ .endif
+ .endr
+ .endif
+ .endr
+ .if __decode_fail == 1
+ .error "__DECODE_RR failed"
+ .endif
+ .endm
+
+ .macro __DECODE_RRR expand,rsave,rtarget,ruse
+ .set __decode_fail,1
+ .irp r1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ .ifc \rsave,%r\r1
+ .irp r2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ .ifc \rtarget,%r\r2
+ .irp r3,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
+ .ifc \ruse,%r\r3
+ \expand \r1,\r2,\r3
+ .set __decode_fail,0
+ .endif
+ .endr
+ .endif
+ .endr
+ .endif
+ .endr
+ .if __decode_fail == 1
+ .error "__DECODE_RRR failed"
+ .endif
+ .endm
+
+ .macro __THUNK_EX_BR reg,ruse
+#ifdef CONFIG_HAVE_MARCH_Z10_FEATURES
+ exrl 0,555f
+ j .
+#else
+ larl \ruse,555f
+ ex 0,0(\ruse)
+ j .
+#endif
+555: br \reg
+ .endm
+
+ .macro GEN_BR_THUNK reg,ruse=%r1
+ __DECODE_RR __THUNK_PROLOG_BR,\reg,\ruse
+ __THUNK_EX_BR \reg,\ruse
+ __THUNK_EPILOG
+ .endm
+
+ .macro BR_EX reg,ruse=%r1
+557: __DECODE_RR __THUNK_BR,\reg,\ruse
+ .pushsection .s390_indirect_branches,"a",@progbits
+ .long 557b-.
+ .popsection
+ .endm
+
+ .macro BASR_EX rsave,rtarget,ruse=%r1
+559: __DECODE_RRR __THUNK_BRASL,\rsave,\rtarget,\ruse
+ .pushsection .s390_indirect_branches,"a",@progbits
+ .long 559b-.
+ .popsection
+ .endm
+
+#else
+ .macro GEN_BR_THUNK reg,ruse=%r1
+ .endm
+
+ .macro BR_EX reg,ruse=%r1
+ br \reg
+ .endm
+
+ .macro BASR_EX rsave,rtarget,ruse=%r1
+ basr \rsave,\rtarget
+ .endm
+#endif
+
+#endif /* __ASSEMBLY__ */
+
+#endif /* _ASM_S390_NOSPEC_ASM_H */
--- a/arch/s390/kernel/entry.S
+++ b/arch/s390/kernel/entry.S
@@ -27,6 +27,7 @@
#include <asm/setup.h>
#include <asm/nmi.h>
#include <asm/export.h>
+#include <asm/nospec-insn.h>
__PT_R0 = __PT_GPRS
__PT_R1 = __PT_GPRS + 8
@@ -223,67 +224,9 @@ _PIF_WORK = (_PIF_PER_TRAP | _PIF_SYSCAL
.popsection
.endm
-#ifdef CONFIG_EXPOLINE
-
- .macro GEN_BR_THUNK name,reg,tmp
- .section .text.\name,"axG",@progbits,\name,comdat
- .globl \name
- .hidden \name
- .type \name,@function
-\name:
- CFI_STARTPROC
-#ifdef CONFIG_HAVE_MARCH_Z10_FEATURES
- exrl 0,0f
-#else
- larl \tmp,0f
- ex 0,0(\tmp)
-#endif
- j .
-0: br \reg
- CFI_ENDPROC
- .endm
-
- GEN_BR_THUNK __s390x_indirect_jump_r1use_r9,%r9,%r1
- GEN_BR_THUNK __s390x_indirect_jump_r1use_r14,%r14,%r1
- GEN_BR_THUNK __s390x_indirect_jump_r11use_r14,%r14,%r11
-
- .macro BASR_R14_R9
-0: brasl %r14,__s390x_indirect_jump_r1use_r9
- .pushsection .s390_indirect_branches,"a",@progbits
- .long 0b-.
- .popsection
- .endm
-
- .macro BR_R1USE_R14
-0: jg __s390x_indirect_jump_r1use_r14
- .pushsection .s390_indirect_branches,"a",@progbits
- .long 0b-.
- .popsection
- .endm
-
- .macro BR_R11USE_R14
-0: jg __s390x_indirect_jump_r11use_r14
- .pushsection .s390_indirect_branches,"a",@progbits
- .long 0b-.
- .popsection
- .endm
-
-#else /* CONFIG_EXPOLINE */
-
- .macro BASR_R14_R9
- basr %r14,%r9
- .endm
-
- .macro BR_R1USE_R14
- br %r14
- .endm
-
- .macro BR_R11USE_R14
- br %r14
- .endm
-
-#endif /* CONFIG_EXPOLINE */
-
+ GEN_BR_THUNK %r9
+ GEN_BR_THUNK %r14
+ GEN_BR_THUNK %r14,%r11
.section .kprobes.text, "ax"
.Ldummy:
@@ -300,7 +243,7 @@ _PIF_WORK = (_PIF_PER_TRAP | _PIF_SYSCAL
ENTRY(__bpon)
.globl __bpon
BPON
- BR_R1USE_R14
+ BR_EX %r14
/*
* Scheduler resume function, called by switch_to
@@ -326,7 +269,7 @@ ENTRY(__switch_to)
TSTMSK __LC_MACHINE_FLAGS,MACHINE_FLAG_LPP
jz 0f
.insn s,0xb2800000,__LC_LPP # set program parameter
-0: BR_R1USE_R14
+0: BR_EX %r14
.L__critical_start:
@@ -393,7 +336,7 @@ sie_exit:
xgr %r5,%r5
lmg %r6,%r14,__SF_GPRS(%r15) # restore kernel registers
lg %r2,__SF_EMPTY+16(%r15) # return exit reason code
- BR_R1USE_R14
+ BR_EX %r14
.Lsie_fault:
lghi %r14,-EFAULT
stg %r14,__SF_EMPTY+16(%r15) # set exit reason code
@@ -452,7 +395,7 @@ ENTRY(system_call)
lgf %r9,0(%r8,%r10) # get system call add.
TSTMSK __TI_flags(%r12),_TIF_TRACE
jnz .Lsysc_tracesys
- BASR_R14_R9 # call sys_xxxx
+ BASR_EX %r14,%r9 # call sys_xxxx
stg %r2,__PT_R2(%r11) # store return value
.Lsysc_return:
@@ -637,7 +580,7 @@ ENTRY(system_call)
lmg %r3,%r7,__PT_R3(%r11)
stg %r7,STACK_FRAME_OVERHEAD(%r15)
lg %r2,__PT_ORIG_GPR2(%r11)
- BASR_R14_R9 # call sys_xxx
+ BASR_EX %r14,%r9 # call sys_xxx
stg %r2,__PT_R2(%r11) # store return value
.Lsysc_tracenogo:
TSTMSK __TI_flags(%r12),_TIF_TRACE
@@ -661,7 +604,7 @@ ENTRY(ret_from_fork)
lmg %r9,%r10,__PT_R9(%r11) # load gprs
ENTRY(kernel_thread_starter)
la %r2,0(%r10)
- BASR_R14_R9
+ BASR_EX %r14,%r9
j .Lsysc_tracenogo
/*
@@ -743,7 +686,7 @@ ENTRY(pgm_check_handler)
je .Lpgm_return
lgf %r9,0(%r10,%r1) # load address of handler routine
lgr %r2,%r11 # pass pointer to pt_regs
- BASR_R14_R9 # branch to interrupt-handler
+ BASR_EX %r14,%r9 # branch to interrupt-handler
.Lpgm_return:
LOCKDEP_SYS_EXIT
tm __PT_PSW+1(%r11),0x01 # returning to user ?
@@ -1061,7 +1004,7 @@ ENTRY(psw_idle)
stpt __TIMER_IDLE_ENTER(%r2)
.Lpsw_idle_lpsw:
lpswe __SF_EMPTY(%r15)
- BR_R1USE_R14
+ BR_EX %r14
.Lpsw_idle_end:
/*
@@ -1103,7 +1046,7 @@ ENTRY(save_fpu_regs)
.Lsave_fpu_regs_done:
oi __LC_CPU_FLAGS+7,_CIF_FPU
.Lsave_fpu_regs_exit:
- BR_R1USE_R14
+ BR_EX %r14
.Lsave_fpu_regs_end:
EXPORT_SYMBOL(save_fpu_regs)
@@ -1149,7 +1092,7 @@ load_fpu_regs:
.Lload_fpu_regs_done:
ni __LC_CPU_FLAGS+7,255-_CIF_FPU
.Lload_fpu_regs_exit:
- BR_R1USE_R14
+ BR_EX %r14
.Lload_fpu_regs_end:
.L__critical_end:
@@ -1366,7 +1309,7 @@ cleanup_critical:
jl 0f
clg %r9,BASED(.Lcleanup_table+104) # .Lload_fpu_regs_end
jl .Lcleanup_load_fpu_regs
-0: BR_R11USE_R14
+0: BR_EX %r14
.align 8
.Lcleanup_table:
@@ -1402,7 +1345,7 @@ cleanup_critical:
ni __SIE_PROG0C+3(%r9),0xfe # no longer in SIE
lctlg %c1,%c1,__LC_USER_ASCE # load primary asce
larl %r9,sie_exit # skip forward to sie_exit
- BR_R11USE_R14
+ BR_EX %r14
#endif
.Lcleanup_system_call:
@@ -1456,7 +1399,7 @@ cleanup_critical:
stg %r15,56(%r11) # r15 stack pointer
# set new psw address and exit
larl %r9,.Lsysc_do_svc
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_system_call_insn:
.quad system_call
.quad .Lsysc_stmg
@@ -1468,7 +1411,7 @@ cleanup_critical:
.Lcleanup_sysc_tif:
larl %r9,.Lsysc_tif
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_sysc_restore:
# check if stpt has been executed
@@ -1485,14 +1428,14 @@ cleanup_critical:
mvc 0(64,%r11),__PT_R8(%r9)
lmg %r0,%r7,__PT_R0(%r9)
1: lmg %r8,%r9,__LC_RETURN_PSW
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_sysc_restore_insn:
.quad .Lsysc_exit_timer
.quad .Lsysc_done - 4
.Lcleanup_io_tif:
larl %r9,.Lio_tif
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_io_restore:
# check if stpt has been executed
@@ -1506,7 +1449,7 @@ cleanup_critical:
mvc 0(64,%r11),__PT_R8(%r9)
lmg %r0,%r7,__PT_R0(%r9)
1: lmg %r8,%r9,__LC_RETURN_PSW
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_io_restore_insn:
.quad .Lio_exit_timer
.quad .Lio_done - 4
@@ -1559,17 +1502,17 @@ cleanup_critical:
# prepare return psw
nihh %r8,0xfcfd # clear irq & wait state bits
lg %r9,48(%r11) # return from psw_idle
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_idle_insn:
.quad .Lpsw_idle_lpsw
.Lcleanup_save_fpu_regs:
larl %r9,save_fpu_regs
- BR_R11USE_R14
+ BR_EX %r14,%r11
.Lcleanup_load_fpu_regs:
larl %r9,load_fpu_regs
- BR_R11USE_R14
+ BR_EX %r14,%r11
/*
* Integer constants
next prev parent reply other threads:[~2018-05-24 10:01 UTC|newest]
Thread overview: 171+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-24 9:37 [PATCH 4.16 000/161] 4.16.12-stable review Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 001/161] net/mlx5: Fix build break when CONFIG_SMP=n Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 002/161] net: Fix a bug in removing queues from XPS map Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 003/161] net/mlx4_core: Fix error handling in mlx4_init_port_info Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 004/161] net/sched: fix refcnt leak in the error path of tcf_vlan_init() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 005/161] net: sched: red: avoid hashing NULL child Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 006/161] net/smc: check for missing nlattrs in SMC_PNETID messages Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 007/161] net: test tailroom before appending to linear skb Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 008/161] packet: in packet_snd start writing at link layer allocation Greg Kroah-Hartman
2018-05-24 14:53 ` Tariq Toukan
2018-05-24 15:01 ` Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 009/161] sock_diag: fix use-after-free read in __sk_free Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 010/161] tcp: purge write queue in tcp_connect_init() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 011/161] tun: fix use after free for ptr_ring Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 012/161] tuntap: fix use after free during release Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 013/161] cxgb4: Correct ntuple mask validation for hash filters Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 014/161] net: dsa: bcm_sf2: Fix RX_CLS_LOC_ANY overwrite for last rule Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 015/161] net: dsa: Do not register devlink for unused ports Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 016/161] net: dsa: bcm_sf2: Fix IPv6 rules and chain ID Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 017/161] net: dsa: bcm_sf2: Fix IPv6 rule half deletion Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 018/161] 3c59x: convert to generic DMA API Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 019/161] cxgb4: fix offset in collecting TX rate limit info Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 020/161] vmxnet3: set the DMA mask before the first DMA map operation Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 021/161] vmxnet3: use DMA memory barriers where required Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 022/161] net: ip6_gre: Request headroom in __gre6_xmit() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 023/161] net: ip6_gre: Fix headroom request in ip6erspan_tunnel_xmit() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 024/161] net: ip6_gre: Split up ip6gre_tnl_link_config() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 025/161] net: ip6_gre: Split up ip6gre_tnl_change() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 026/161] net: ip6_gre: Split up ip6gre_newlink() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 027/161] net: ip6_gre: Split up ip6gre_changelink() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 028/161] net: ip6_gre: Fix ip6erspan hlen calculation Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 029/161] net: ip6_gre: fix tunnel metadata device sharing Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 030/161] qed: LL2 flush isles when connection is closed Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 031/161] qed: Fix possibility of list corruption during rmmod flows Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 032/161] qed: Fix LL2 race during connection terminate Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 033/161] sparc: vio: use put_device() instead of kfree() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 034/161] ext2: fix a block leak Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 035/161] powerpc/rfi-flush: Always enable fallback flush on pseries Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 036/161] powerpc: Add security feature flags for Spectre/Meltdown Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 037/161] powerpc/pseries: Add new H_GET_CPU_CHARACTERISTICS flags Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 038/161] powerpc/pseries: Set or clear security feature flags Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 039/161] powerpc/powernv: " Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 040/161] powerpc/64s: Move cpu_show_meltdown() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 041/161] powerpc/64s: Enhance the information in cpu_show_meltdown() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 042/161] powerpc/powernv: Use the security flags in pnv_setup_rfi_flush() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 043/161] powerpc/pseries: Use the security flags in pseries_setup_rfi_flush() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 044/161] powerpc/64s: Wire up cpu_show_spectre_v1() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 045/161] powerpc/64s: Wire up cpu_show_spectre_v2() Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 046/161] powerpc/pseries: Fix clearing of security feature flags Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 047/161] powerpc: Move default " Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 048/161] powerpc/64s: Add support for a store forwarding barrier at kernel entry/exit Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 049/161] s390: move nobp parameter functions to nospec-branch.c Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 050/161] s390: add automatic detection of the spectre defense Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 051/161] s390: report spectre mitigation via syslog Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 052/161] s390: add sysfs attributes for spectre Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 053/161] s390: add assembler macros for CPU alternatives Greg Kroah-Hartman
2018-05-24 9:37 ` [PATCH 4.16 054/161] s390: correct nospec auto detection init order Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 055/161] s390: correct module section names for expoline code revert Greg Kroah-Hartman
2018-05-24 9:38 ` Greg Kroah-Hartman [this message]
2018-05-24 9:38 ` [PATCH 4.16 057/161] s390/crc32-vx: use expoline for indirect branches Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 058/161] s390/lib: " Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 059/161] s390/ftrace: " Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 060/161] s390/kernel: " Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 061/161] s390: move spectre sysfs attribute code Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 062/161] s390: extend expoline to BC instructions Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 063/161] s390: use expoline thunks in the BPF JIT Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 064/161] scsi: sg: allocate with __GFP_ZERO in sg_build_indirect() Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 065/161] scsi: zfcp: fix infinite iteration on ERP ready list Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 066/161] Bluetooth: btusb: Add USB ID 7392:a611 for Edimax EW-7611ULB Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 067/161] ALSA: usb-audio: Add native DSD support for Luxman DA-06 Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 068/161] usb: dwc3: Add SoftReset PHY synchonization delay Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 069/161] usb: dwc3: Update DWC_usb31 GTXFIFOSIZ reg fields Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 070/161] usb: dwc3: Makefile: fix link error on randconfig Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 071/161] xhci: zero usb device slot_id member when disabling and freeing a xhci slot Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 072/161] usb: dwc2: Fix interval type issue Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 073/161] usb: dwc2: hcd: Fix host channel halt flow Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 074/161] usb: dwc2: host: Fix transaction errors in host mode Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 075/161] usb: gadget: ffs: Let setup() return USB_GADGET_DELAYED_STATUS Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 076/161] usb: gadget: ffs: Execute copy_to_user() with USER_DS set Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 077/161] usbip: Correct maximum value of CONFIG_USBIP_VHCI_HC_PORTS Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 078/161] usb: gadget: udc: change comparison to bitshift when dealing with a mask Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 079/161] usb: gadget: composite: fix incorrect handling of OS desc requests Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 080/161] media: lgdt3306a: Fix module count mismatch on usb unplug Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 081/161] media: em28xx: USB bulk packet size fix Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 082/161] Bluetooth: btusb: Add device ID for RTL8822BE Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 083/161] Bluetooth: btusb: Add support for Intel Bluetooth device 22560 [8087:0026] Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 084/161] xhci: Show what USB release number the xHC supports from protocol capablity Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 085/161] loop: dont call into filesystem while holding lo_ctl_mutex Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 086/161] loop: fix LOOP_GET_STATUS lock imbalance Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 087/161] cfg80211: limit wiphy names to 128 bytes Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 088/161] hfsplus: stop workqueue when fill_super() failed Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 089/161] x86/kexec: Avoid double free_page() upon do_kexec_load() failure Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 090/161] staging: bcm2835-audio: Release resources on module_exit() Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 091/161] staging: fsl-dpaa2/eth: Fix incorrect kfree Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 092/161] staging: lustre: fix bug in osc_enter_cache_try Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 093/161] staging: fsl-dpaa2/eth: Fix incorrect casts Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 094/161] staging: rtl8192u: return -ENOMEM on failed allocation of priv->oldaddr Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 095/161] staging: ks7010: Use constants from ieee80211_eid instead of literal ints Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 096/161] staging: lustre: lmv: correctly iput lmo_root Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 097/161] crypto: inside-secure - move the digest to the request context Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 098/161] crypto: inside-secure - wait for the request to complete if in the backlog Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 099/161] crypto: atmel-aes - fix the keys zeroing on errors Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 100/161] crypto: ccp - dont disable interrupts while setting up debugfs Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 101/161] crypto: inside-secure - do not process request if no command was issued Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 102/161] crypto: inside-secure - fix the cache_len computation Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 103/161] crypto: inside-secure - fix the extra cache computation Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 104/161] crypto: inside-secure - do not overwrite the threshold value Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 105/161] crypto: sunxi-ss - Add MODULE_ALIAS to sun4i-ss Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 106/161] crypto: inside-secure - fix the invalidation step during cra_exit Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 107/161] scsi: aacraid: Insure command thread is not recursively stopped Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 108/161] scsi: devinfo: add HP DISK-SUBSYSTEM device, for HP XP arrays Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 109/161] scsi: lpfc: Fix NVME Initiator FirstBurst Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 110/161] scsi: core: Make SCSI Status CONDITION MET equivalent to GOOD Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 111/161] scsi: mvsas: fix wrong endianness of sgpio api Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 112/161] scsi: lpfc: Fix issue_lip if link is disabled Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 113/161] scsi: lpfc: Fix nonrecovery of NVME controller after cable swap Greg Kroah-Hartman
2018-05-24 9:38 ` [PATCH 4.16 114/161] scsi: lpfc: Fix soft lockup in lpfc worker thread during LIP testing Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 115/161] scsi: lpfc: Fix IO failure during hba reset testing with nvme io Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 116/161] scsi: lpfc: Fix frequency of Release WQE CQEs Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 117/161] ASoC: rockchip: rk3288-hdmi-analog: Select needed codecs Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 118/161] ASoC: samsung: odroid: Fix 32000 sample rate handling Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 119/161] ASoC: topology: create TLV data for dapm widgets Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 120/161] ASoC: samsung: i2s: Ensure the RCLK rate is properly determined Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 121/161] clk: rockchip: Fix wrong parent for SDMMC phase clock for rk3228 Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 122/161] clk: Dont show the incorrect clock phase Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 123/161] clk: hisilicon: mark wdt_mux_p[] as const Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 124/161] clk: tegra: Fix pll_u rate configuration Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 125/161] clk: rockchip: Prevent calculating mmc phase if clock rate is zero Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 126/161] clk: samsung: s3c2410: Fix PLL rates Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 127/161] clk: samsung: exynos7: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 128/161] clk: samsung: exynos5260: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 129/161] clk: samsung: exynos5433: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 130/161] clk: samsung: exynos5250: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 131/161] clk: samsung: exynos3250: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 132/161] clk: meson: axg: fix the od shift of the sys_pll Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 133/161] clk: meson: axg: add the fractional part of the fixed_pll Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 134/161] media: ov5645: add missing of_node_put() in error path Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 135/161] media: cx23885: Override 888 ImpactVCBe crystal frequency Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 136/161] media: cx23885: Set subdev host data to clk_freq pointer Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 137/161] media: s3c-camif: fix out-of-bounds array access Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 138/161] media: lgdt3306a: Fix a double kfree on i2c device remove Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 139/161] media: em28xx: Add Hauppauge SoloHD/DualHD bulk models Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 140/161] media: v4l: vsp1: Fix display stalls when requesting too many inputs Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 141/161] media: i2c: adv748x: fix HDMI field heights Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 142/161] media: vb2: Fix videobuf2 to map correct area Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 143/161] media: vivid: fix incorrect capabilities for radio Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 144/161] media: cx25821: prevent out-of-bounds read on array card Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 145/161] serial: mvebu-uart: fix tx lost characters Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 146/161] serial: xuartps: Fix out-of-bounds access through DT alias Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 147/161] serial: sh-sci: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 148/161] serial: samsung: Fix out-of-bounds access through serial port index Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 149/161] serial: mxs-auart: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 150/161] serial: imx: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 151/161] serial: fsl_lpuart: Fix out-of-bounds access through DT alias Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 152/161] serial: arc_uart: " Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 153/161] serial: 8250: Dont service RX FIFO if interrupts are disabled Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 154/161] serial: altera: ensure port->regshift is honored consistently Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 155/161] rtc: snvs: Fix usage of snvs_rtc_enable Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 156/161] rtc: hctosys: Ensure system time doesnt overflow time_t Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 157/161] rtc: rk808: fix possible race condition Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 158/161] rtc: m41t80: fix race conditions Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 159/161] rtc: tx4939: avoid unintended sign extension on a 24 bit shift Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 160/161] rtc: rp5c01: fix possible race condition Greg Kroah-Hartman
2018-05-24 9:39 ` [PATCH 4.16 161/161] rtc: goldfish: Add missing MODULE_LICENSE Greg Kroah-Hartman
2018-05-24 17:26 ` [PATCH 4.16 000/161] 4.16.12-stable review kernelci.org bot
2018-05-24 17:34 ` Guenter Roeck
2018-05-24 19:47 ` Greg Kroah-Hartman
2018-05-24 18:26 ` Dan Rue
2018-05-24 19:47 ` Greg Kroah-Hartman
2018-05-24 19:21 ` Shuah Khan
2018-05-24 19:45 ` Greg Kroah-Hartman
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=20180524093025.191893427@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=schwidefsky@de.ibm.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome