Crash 9.0.3 introduced a change to the output of the bt and ps commands. The new version adds NUMA node to cpu number, i.e. 'CPU' becomes 'CPU/NUMA'. For example:
old:
PID: 1 TASK: ffff9443067f4000 CPU: 7 COMMAND: "systemd"
new:
PID: 1 TASK: ffff9443067f4000 CPU/NUMA: 7/0 COMMAND: "systemd"
This causes breakages in several PyKdump commands that parsed these outputs.
Updated parsing code to handle either format for backward compatibility. Fixed in [d6a1b5].
Related
Commit: [d6a1b5]