https://bugs.freedesktop.org/show_bug.cgi?id=104299
--- Comment #10 from Andrey Grodzovsky andrey.grodzovsky@amd.com --- (In reply to higuita from comment #9)
Created attachment 136400 [details] dmesg oops with kasan 2
Another crash, this time in RUST, just to see if it helps in any way
i know how to build stuff, but i have no idea how to debug the kernel :)
can you please give me some pointers how to find and give you the needed info?
NP, check answer here https://stackoverflow.com/questions/13468286/how-to-read-understand-analyze-...
to obtain the function address within your amdgpu.ko just do
nm -C drivers/gpu/drm/amd/amdgpu/amdgpu.ko | grep amdgpu_sync_get_fence nm -C drivers/gpu/drm/amd/amdgpu/amdgpu.ko | grep amdgpu_sync_resv
The offset into the function you can see from the dmesg dump amdgpu_sync_get_fence+0x91/0xe0 so 91 is the offset
Thanks, Andrey
(In reply to higuita from comment #9)
Created attachment 136400 [details] dmesg oops with kasan 2
Another crash, this time in RUST, just to see if it helps in any way
i know how to build stuff, but i have no idea how to debug the kernel :)
can you please give me some pointers how to find and give you the needed info?