Hello, in the file arch/sparc64/kernel/process.c, the function __show_regs() prints the content of the registers four by four, but every register's content needs 16 caracters to be printed; the name of the register needs 4 caracters; and one caracter is needed to separate this value from the next register's name.
Therefore, it uses 84 caracters per line, but the VT100 has only 80, so we are using two lines instead of only one, shortening the content of the (eventual) Oops one could sent. I think we could perform better, by suppressing the space between the name of the register and it's value. By this way, instead of writing : g4: fffff80000000000 g5: 0000000000000004 g6: fffff80001348000 g7: 000000000000 0000 we would have : g4:fffff80000000000 g5:0000000000000004 g6:fffff80001348000 g7:0000000000000000 It remains fully understandable, I think. Alternately, we could print only 3 registers per line, but since the registers are grouped 8 by 8, it would be less logical. This would also have a sense for Sparc32 computers, and, in the same file, for the functions show_stackframe and show_regwindow. Any comments? Should I make a patch? -- Emmanuel Colbus Club GNU/Linux ENSIMAG - Departement Telecoms - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/