On Mon, 25 May 2020, Mikulas Patocka wrote: > > Please observe that changing the `*_relaxed' entry points from merely > > aliasing the corresponding `__raw_*' handlers to more elaborate code > > sequences (though indeed slightly only, but still) makes the situation > > analogous to one we have with the ordinary MMIO accessor entry points. > > Those regular entry points have been made `extern inline' and wrapped > > into: > > > > #if IO_CONCAT(__IO_PREFIX,trivial_rw_bw) == 1 > > > > and: > > > > #if IO_CONCAT(__IO_PREFIX,trivial_rw_lq) == 1 > > > > respectively, with corresponding out-of-line entry points available, so > > that there is no extra inline code produced where the call to the relevant > > MMIO accessor is going to end up with an actual function call, as this > > would not help performance in any way and would expand code unnecessarily > > at all call sites. > > > > Therefore I suggest that your new `static inline' functions follow the > > pattern, perhaps by grouping them with the corresponding ordinary accessor > > functions in arch/alpha/include/asm/io.h within the relevant existing > > #ifdef, and then by making them `extern inline' and providing out-of-line > > implementations in arch/alpha/kernel/io.c, with the individual symbols > > exported. Within arch/alpha/kernel/io.c the compiler will still inline > > code as it sees fit as it already does, e.g. `__raw_readq' might get > > inlined in `readq' if it turns out cheaper than arranging for an actual > > call, including all the stack frame preparation for `ra' preservation; > > it's less likely with say `writeq' which probably always ends with a tail > > call to `__raw_writeq' as no stack frame is required in that case. > > > > That for the read accessors. > > I think that making the read*_relaxed functions extern inline just causes > source code bloat with no practical gain - if we make them extern inline, > we would need two implementations (one in the include file, the other in > the C file) - and it is not good practice to duplicate code. We do that already with the existing accessors, and while I agree the duplication is a bit unfortunate and could be solved with some macro hackery so that there is a single version in arch/alpha/include/asm/io.h that gets pasted to produce out-of-line copies in arch/alpha/kernel/io.c. That would be good having across all the accessors, but that is not relevant to the regression discussed here and therefore I do not request that you make such a clean-up as a part of this series. > The functions __raw_read* are already extern inline, so the compiler will > inline/noinline them depending on the macros trivial_io_bw and > trivial_io_lq - so we can just call them from read*_relaxed without > repeating the extern inline pattern. The whole point of this peculiar arrangement for cooked accessors is to avoid having barriers inserted inline around out-of-line calls to raw accessors, and therefore I maintain that we need to have the arrangement applied consistently across all the cooked accessors. Since you're creating new distinct cooked accessors (by making their names no longer alias to existing cooked accessors), they need to follow the pattern. NB this arrangement was added back in 2.6.9-rc3, with: ChangeSet@1.1939.5.8, 2004-09-22 22:40:06-07:00, rth@xxxxxxxxxxxxxxxxxx [ALPHA] Implement new ioread interface. I believe. I don't know if any further details or discussion around that can be chased, but Richard might be able to chime in. Maciej