x86/jump-label: Use best default nops for inital jump label calls
authorSteven Rostedt <srostedt@redhat.com>
Thu, 26 Jan 2012 23:06:45 +0000 (18:06 -0500)
committerSteven Rostedt <rostedt@goodmis.org>
Wed, 7 Aug 2013 01:16:33 +0000 (21:16 -0400)
commitc3c7f14a116c24d6fba185c95cd7454f3764f8a9
tree1766dcc9afbc1a1417c2783a601c7c7973b71eef
parentad81f0545ef01ea651886dddac4bef6cec930092
x86/jump-label: Use best default nops for inital jump label calls

As specified by H. Peter Anvin, the best nops for x86 without knowing
the running computer is:

32bit:
  0x3e, 0x8d, 0x74, 0x26, 0x00 also known as GENERIC_NOP5_ATOMIC

64bit:
  0x0f, 0x1f, 0x44, 0x00, 0x00  also known as P6_NOP5_ATOMIC

Currently the default nop that is used by jump label is:

 0xe9 0x00 0x00 0x00 0x00

Which is really a 5byte jump to the next position.

It's better to use a real nop than a jmp.

Cc: H. Peter Anvin <hpa@linux.intel.com>
Cc: Jason Baron <jbaron@redhat.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
arch/x86/include/asm/jump_label.h