Skip to content

Commit be1ea50

Browse files
djbwgregkh
authored andcommitted
x86/speculation: Fix up array_index_nospec_mask() asm constraint
commit be3233f upstream. Allow the compiler to handle @SiZe as an immediate value or memory directly rather than allocating a register. Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dan Williams <dan.j.williams@intel.com> Cc: Andy Lutomirski <luto@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/151797010204.1289.1510000292250184993.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 191752d commit be1ea50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/x86/include/asm/barrier.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static inline unsigned long array_index_mask_nospec(unsigned long index,
3939

4040
asm ("cmp %1,%2; sbb %0,%0;"
4141
:"=r" (mask)
42-
:"r"(size),"r" (index)
42+
:"g"(size),"r" (index)
4343
:"cc");
4444
return mask;
4545
}

0 commit comments

Comments
 (0)