是否可以在 dmesg 中找到导致 traps msg 的进程?

Is it possible to find the process causing a traps msg in dmesg?

我正在尝试对充斥 dmesg 的消息进行故障排除:

[Tue Mar  5 20:46:23 2019] traps: g16[7254] trap invalid opcode ip:404956 sp:7fff6d7c6200 error:0 in g16[400000+4cf7000]
[Tue Mar  5 20:46:24 2019] traps: g16[7356] trap invalid opcode ip:404956 sp:7fff1fa4bad0 error:0 in g16[400000+4cf7000]
[Tue Mar  5 20:46:24 2019] traps: g16[7375] trap invalid opcode ip:404956 sp:7fff2a3f6b50 error:0 in g16[400000+4cf7000]
[Tue Mar  5 22:31:21 2019] traps: g16[26561] trap invalid opcode ip:404956 sp:7ffca1ae89d0 error:0 in g16[400000+4cf7000]
[Tue Mar  5 22:35:10 2019] traps: g16[26801] trap invalid opcode ip:404956 sp:7ffe0542aad0 error:0 in g16[400000+4cf7000]

这是linux:

bash-4.2$ uname -a
Linux cx1-138-5-1 3.10.0-957.5.1.el7.x86_64 #1 SMP Fri Feb 1 14:54:57 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

这种情况会每隔一段时间连续发生。有什么方法可以识别它可能是哪个程序,例如。来自似乎总是相同的 ip:404956?

该过程清楚地显示在该输出中(g16 和 pid 7254 等)。 ip 和 sp 是指令指针和堆栈指针寄存器。

Error 0 if you look here: 是除以 0 的错误。