On Wed, Feb 21, 2018 at 01:39:52PM -0800, Linus Torvalds wrote: > showing with a hung kernel. And most of the above is actually > completely useless. Those are the *usermode* registers it shows, not > the kernel registers at the time of the crash (the final rip/rsp/code > lines are for the actual kernel crash, but I'm talking about the > register dump above it). > > So notice how most of the *useful* data has actually scrolled off the > screen and is all gone because the machine is hung. Instead, we've > added stuff that doesn't help at all, usually. > > It's not just that last patch, obviously. The big hunk o fuser > register dumping is actually from Josh's trace improvements. But the > above really is a great example of how we have made oopses *harder* to > read by trying to add more data. They have gotten messier, but they > have also gotten so verbose that the *good* stuff has all scrolled > away. > > So I think we should take a hard look at that "more data is better". > Look at the above 25 lines and tell me - is that actually 25 useful > lines for debugging a crash in sysrq_handle_crash?
So being one to only use machines that have a serial line this does not really affect me; but it would appear to me that it might make sense to try and reverse the entire dump. That is 'obviously' going to be rather tricky, because we'll have to print in the direct reverse direction we discover the data and the only way to do that is with extra buffers, which adds extra complexity to something we want absolutely robust. But a simply line based reverse of the output would get us the most useful data last, just what we want.