2009/10/20 Thomas Gleixner <tglx@xxxxxxxxxxxxx>: > On Sun, 18 Oct 2009, Linus Walleij wrote: >> This moves the clocksource_set_clock() and clockevent_set_clock() >> from the MIPS timer code into clockchips and clocksource where >> it belongs. > (...) > Please do not make that functions inline. They are too large and there > is no benefit of inlining them. I think there is, because these functions in MIPS if I'm not misreading it, are used once each in one and one spot only in the clocksource/clockevent set-up at boot time for each platform in which they are currently used. Further these spots tend to be __init or even __cpuinit code segments, so they will be discarded and if we inline the code it will be discarded after boot as well. If you foresee that the code will be used in other ways under other circumstances, I will make them non-inlined of course, but I have a hard time seeing that. OK? Linus Walleij