On Mon, Mar 04, 2019 at 09:52:39PM +0200, Leon Romanovsky wrote: > > In each of these branches? Only one can run, right? > > I don't like "else if ()" construction and see it is as dangerous, due > to the fact that it hides code flow. I intentionally avoid "else if" in > my patches. Oh, I don't think that is a good idea, if the control can only do one of the ifs it should be explicit through return/goto/else/etc. Otherwise it looks like all the ifs can run concurrently, which is not at all the case. Jason