mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
kernel: only try to load kernel symbol map once
If we fail, log a message to the console and bail. This seems to happen with recent kernel changes.
This commit is contained in:
@ -186,8 +186,17 @@ sp_kernel_symbol_from_address (SpCaptureAddress address)
|
|||||||
|
|
||||||
if (G_UNLIKELY (kernel_symbols == NULL))
|
if (G_UNLIKELY (kernel_symbols == NULL))
|
||||||
{
|
{
|
||||||
if (!sp_kernel_symbol_load ())
|
static gboolean failed;
|
||||||
|
|
||||||
|
if (failed)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
if (!sp_kernel_symbol_load ())
|
||||||
|
{
|
||||||
|
g_warning ("Failed to load kernel symbol map, kernel symbols will not be available!");
|
||||||
|
failed = TRUE;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
g_assert (kernel_symbols != NULL);
|
g_assert (kernel_symbols != NULL);
|
||||||
|
|||||||
Reference in New Issue
Block a user