2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

ppc64/vdso: fixing debug trace

There was a \n missing.

CC: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: Laurent Dufour <ldufour@linux.vnet.ibm.com>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Laurent Dufour
2015-09-03 16:26:31 +02:00
committed by Pavel Emelyanov
parent 7f01d691c7
commit 46f9285e81

View File

@@ -75,9 +75,6 @@ static unsigned long put_trampoline(unsigned long at, struct vdso_symtable *sym)
if (i==j || vdso_symbol_empty(&sym->symbols[j]))
continue;
/* pr_debug("next:%s(%lx)\n", sym->symbols[j].name, */
/* sym->symbols[j].offset); */
if (sym->symbols[j].offset <= sym->symbols[i].offset)
/* this symbol is above the current one */
continue;
@@ -105,7 +102,7 @@ static unsigned long put_trampoline(unsigned long at, struct vdso_symtable *sym)
trampoline = at + sym->symbols[i].offset;
trampoline += TRAMP_CALL_SIZE;
pr_debug("Puting vDSO trampoline in %s at %lx",
pr_debug("Puting vDSO trampoline in %s at %lx\n",
sym->symbols[i].name, trampoline);
builtin_memcpy((void *)trampoline, &vdso_trampoline,
size);