We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dac2aa4 commit edc5149Copy full SHA for edc5149
executor/executor_linux.h
@@ -184,6 +184,8 @@ static bool use_cover_edges(uint32 pc)
184
185
static bool is_kernel_data(uint64 addr)
186
{
187
+ if (is_gvisor)
188
+ return false;
189
#if GOARCH_386 || GOARCH_amd64
190
// This range corresponds to the first 1TB of the physical memory mapping,
191
// see Documentation/arch/x86/x86_64/mm.rst.
@@ -196,6 +198,8 @@ static bool is_kernel_data(uint64 addr)
196
198
// Returns >0 for yes, <0 for no, 0 for don't know.
197
199
static int is_kernel_pc(uint64 pc)
200
201
202
+ return 0;
203
204
// Text/modules range for x86_64.
205
return pc >= 0xffffffff80000000ull && pc < 0xffffffffff000000ull ? 1 : -1;
0 commit comments