Guys, so what is the current consensus on line length in the kernel? Coding style still says:
The preferred limit on the length of a single line is 80 columns.
This is not a hard limit and it may (or even must) be exceeded if there are good reasons. That's also mentioned in the document. But then I get a nitpick like this:
It is still under the 100 character limit.
Where does it come from? Should the coding style be updated?
@corbet ?
@ptesarik @corbet people vary in attitude, you're not going to go wrong at 80 chars, but 100 is kinda the hard limit in reality (I think checkpatch.pl defaults to this).
I'd say look at how things are done in the file you are editing + imitate generally.
Personally I try to keep to 80 chars but will go over it if a few chars more would prevent it turning to a mess.
But it really does vary throughout the kernel and it is annoying yes
@oleksandr @corbet
Hey, you guys don't code on a physical DEC VT102 either? Then why do we maintain all that tty compatibility cruft?