diff options
author | Ingo Molnar <mingo@kernel.org> | 2017-09-04 05:01:18 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-09-04 05:01:18 -0400 |
commit | edc2988c548db05e33b921fed15821010bc74895 (patch) | |
tree | b35860428acea35e5866d4cf007519ed943a85de /tools | |
parent | d82fed75294229abc9d757f08a4817febae6c4f4 (diff) | |
parent | 81a84ad3cb5711cec79f4dd53a4ce026b092c432 (diff) |
Merge branch 'linus' into locking/core, to fix up conflicts
Conflicts:
mm/page_alloc.c
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/objtool/arch/x86/decode.c | 26 | ||||
-rwxr-xr-x | tools/testing/selftests/ntb/ntb_test.sh | 4 |
2 files changed, 29 insertions, 1 deletions
diff --git a/tools/objtool/arch/x86/decode.c b/tools/objtool/arch/x86/decode.c index a36c2eba64e7..4559a21a8de2 100644 --- a/tools/objtool/arch/x86/decode.c +++ b/tools/objtool/arch/x86/decode.c | |||
@@ -271,7 +271,7 @@ int arch_decode_instruction(struct elf *elf, struct section *sec, | |||
271 | case 0x8d: | 271 | case 0x8d: |
272 | if (rex == 0x48 && modrm == 0x65) { | 272 | if (rex == 0x48 && modrm == 0x65) { |
273 | 273 | ||
274 | /* lea -disp(%rbp), %rsp */ | 274 | /* lea disp(%rbp), %rsp */ |
275 | *type = INSN_STACK; | 275 | *type = INSN_STACK; |
276 | op->src.type = OP_SRC_ADD; | 276 | op->src.type = OP_SRC_ADD; |
277 | op->src.reg = CFI_BP; | 277 | op->src.reg = CFI_BP; |
@@ -281,6 +281,30 @@ int arch_decode_instruction(struct elf *elf, struct section *sec, | |||
281 | break; | 281 | break; |
282 | } | 282 | } |
283 | 283 | ||
284 | if (rex == 0x48 && (modrm == 0xa4 || modrm == 0x64) && | ||
285 | sib == 0x24) { | ||
286 | |||
287 | /* lea disp(%rsp), %rsp */ | ||
288 | *type = INSN_STACK; | ||
289 | op->src.type = OP_SRC_ADD; | ||
290 | op->src.reg = CFI_SP; | ||
291 | op->src.offset = insn.displacement.value; | ||
292 | op->dest.type = OP_DEST_REG; | ||
293 | op->dest.reg = CFI_SP; | ||
294 | break; | ||
295 | } | ||
296 | |||
297 | if (rex == 0x48 && modrm == 0x2c && sib == 0x24) { | ||
298 | |||
299 | /* lea (%rsp), %rbp */ | ||
300 | *type = INSN_STACK; | ||
301 | op->src.type = OP_SRC_REG; | ||
302 | op->src.reg = CFI_SP; | ||
303 | op->dest.type = OP_DEST_REG; | ||
304 | op->dest.reg = CFI_BP; | ||
305 | break; | ||
306 | } | ||
307 | |||
284 | if (rex == 0x4c && modrm == 0x54 && sib == 0x24 && | 308 | if (rex == 0x4c && modrm == 0x54 && sib == 0x24 && |
285 | insn.displacement.value == 8) { | 309 | insn.displacement.value == 8) { |
286 | 310 | ||
diff --git a/tools/testing/selftests/ntb/ntb_test.sh b/tools/testing/selftests/ntb/ntb_test.sh index 1c12b5855e4f..5fc7ad359e21 100755 --- a/tools/testing/selftests/ntb/ntb_test.sh +++ b/tools/testing/selftests/ntb/ntb_test.sh | |||
@@ -333,6 +333,10 @@ function ntb_tool_tests() | |||
333 | link_test $LOCAL_TOOL $REMOTE_TOOL | 333 | link_test $LOCAL_TOOL $REMOTE_TOOL |
334 | link_test $REMOTE_TOOL $LOCAL_TOOL | 334 | link_test $REMOTE_TOOL $LOCAL_TOOL |
335 | 335 | ||
336 | #Ensure the link is up on both sides before continuing | ||
337 | write_file Y $LOCAL_TOOL/link_event | ||
338 | write_file Y $REMOTE_TOOL/link_event | ||
339 | |||
336 | for PEER_TRANS in $(ls $LOCAL_TOOL/peer_trans*); do | 340 | for PEER_TRANS in $(ls $LOCAL_TOOL/peer_trans*); do |
337 | PT=$(basename $PEER_TRANS) | 341 | PT=$(basename $PEER_TRANS) |
338 | write_file $MW_SIZE $LOCAL_TOOL/$PT | 342 | write_file $MW_SIZE $LOCAL_TOOL/$PT |