Re: [PATCH] Alpha print the symbol name in Oops

From: Andrew Morton
Date: Thu Jul 08 2004 - 02:23:09 EST


Aneesh Kumar <aneesh.kumar@xxxxxxxxx> wrote:
>
> + printk("[<%lx>]", tmp);
> + print_symbol(" %s\n", tmp);

print_symbol() does nothing at all if CONFIG_KALLSYMS=n. You probably want:

printk("[<%lx>]", tmp);
print_symbol(" %s", tmp);
printk("\n");

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/