Rant regarding code review issues

Ed Tanous ed.tanous at intel.com
Sat Sep 14 05:45:25 AEST 2019


On 9/13/19 11:52 AM, Wilfred Smith wrote:
> 
> I strongly assert that there should be a formal list of commit rules. If the rules were actually documented and published, one could go through the checklist to ensure that the commit conforms. The result would be less time wasted by the committer and the reviewers, as well as more consistency.
> 
https://github.com/openbmc/docs

> But it sucks to have a commit booted for reasons that (a) I could not reasonably be expected to have known previously (because I read the documentation, of course) and(b) I may legitimately disagree with (e.g. the insanity that anyone
holds to an 80-column rule instead of 132 in a day of 4K monitors and
75-character class names inside nested namespaces that are just as long,
not counting fully decorated traits). Oh…right…just use “auto”.

>From the coding standard here:
https://github.com/openbmc/docs/blob/master/cpp-style-and-conventions.md

"Line length should be limited to 80 characters."

You are welcome to disagree with that statement, but the recommended way
to go about that would be to push a review to change to that rule,
invoking a 132 character line length, and start a discussion about the
above.  After that, follow up with changes to the clang-format, and
commits to each repository to change the codebase to obey the new rule.
I'm willing to bet if you did that, many people would agree with you,
and we'd have a very productive discussion about it.

It should be noted, for most code, all of this formatting is automatic
via clang-format, which is documented on the next line in the file I linked.

With all of the above, I'm struggling to see how you're wanting to
improve here.  Do you think the documentation could be cleaned up?  Is
the documentation too long to read?  Should we organize it in a
different way so that the information above is easier to find?

> 
> The process should be somewhat predictable, preferably programmatic.

Agreed, but throughout this email, I don't see any actionable suggestion
on how this could be improved.  Could you focus a little more on what
you think we could change to make this situation better?

> 
> Mind you, I have no problem with complying with the maintainer’s rules, but I’d like to have some chance at getting a trivial commit passed on the first shot. Two lines of BitBake config, that actually accomplish what is intended, fetches a half-dozen complaints?

Assuming this is the review you're talking about:
https://gerrit.openbmc-project.xyz/c/openbmc/meta-facebook/+/25145

It was 7 lines of bitbake config, and it followed some project practices
that are deprecated and trying to be removed.

Interestingly enough, I'm not able to find where we document the 50/72
rule for commit messages, although I know some editors will enforce it
when you do your edits.  I would've expected it to be here:
https://github.com/openbmc/docs/blob/master/CONTRIBUTING.md#submitting-changes
Maybe that's an improvement to the docs you could propose?

> 
> It helps the maintainer if committers are able to self-police 98% of the issues, and makes the entire process seem less hostile.

Agreed.  I'd also mention that in some cases (like the 50/27 rule and 80
character line lengths) the CI could give faster feedback for obvious
things.  Is that something you'd be willing to look into automating in
the CI?  I'm sure a lot of people would appreciate you doing so.
There's a lot of low hanging fruit here that could be added to CI to
make the responses seem less hostile.

> 
> Also, there are too many places to put the same information. I quoted the warning messages I was remedying in the patch set comments, but summarized in the commit message because that seemed like the right thing to do. And that got me another downvote.

At the end of the day, the commit message is what most people are
looking at once the commit is merged, and you put a single line that
wasn't very descriptive.  The maintainer pointed out that you already
had the level of detail needed, you just failed to put it in the commit
message.  Certainly, writing this email took longer than just updating
the commit message with more detail?


More information about the openbmc mailing list