|
From: <sv...@va...> - 2013-04-26 18:57:47
|
petarj 2013-04-26 20:01:04 +0100 (Fri, 26 Apr 2013)
New Revision: 13379
Log:
mips: fixup blksys_restart address for mips64
Restart logic has changed in kernel, this is counterpart in Valgrind.
This change fixes:
none/tests/syscall-restart1
none/tests/syscall-restart2
for mips64.
Modified files:
trunk/coregrind/m_syswrap/syscall-mips64-linux.S
Modified: trunk/coregrind/m_syswrap/syscall-mips64-linux.S (+1 -2)
===================================================================
--- trunk/coregrind/m_syswrap/syscall-mips64-linux.S 2013-04-26 09:59:40 +01:00 (rev 13378)
+++ trunk/coregrind/m_syswrap/syscall-mips64-linux.S 2013-04-26 20:01:04 +01:00 (rev 13379)
@@ -100,9 +100,8 @@
ld $5, OFFSET_mips64_r5($5) /* a1 */
ld $2, 0($29) /* syscallno */
-2: nop
- syscall
+2: syscall
/* Saving return values into Guest state */
3: ld $5, 8($29) /* guest_state */
|