Commit 46f9285e authored by Laurent Dufour's avatar Laurent Dufour Committed by Pavel Emelyanov

ppc64/vdso: fixing debug trace

There was a \n missing.

CC: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: 's avatarLaurent Dufour <ldufour@linux.vnet.ibm.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7f01d691
...@@ -75,9 +75,6 @@ static unsigned long put_trampoline(unsigned long at, struct vdso_symtable *sym) ...@@ -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])) if (i==j || vdso_symbol_empty(&sym->symbols[j]))
continue; continue;
/* pr_debug("next:%s(%lx)\n", sym->symbols[j].name, */
/* sym->symbols[j].offset); */
if (sym->symbols[j].offset <= sym->symbols[i].offset) if (sym->symbols[j].offset <= sym->symbols[i].offset)
/* this symbol is above the current one */ /* this symbol is above the current one */
continue; continue;
...@@ -105,7 +102,7 @@ static unsigned long put_trampoline(unsigned long at, struct vdso_symtable *sym) ...@@ -105,7 +102,7 @@ static unsigned long put_trampoline(unsigned long at, struct vdso_symtable *sym)
trampoline = at + sym->symbols[i].offset; trampoline = at + sym->symbols[i].offset;
trampoline += TRAMP_CALL_SIZE; 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); sym->symbols[i].name, trampoline);
builtin_memcpy((void *)trampoline, &vdso_trampoline, builtin_memcpy((void *)trampoline, &vdso_trampoline,
size); size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment