On 11/30/07, Benjamin Herrenschmidt <[EMAIL PROTECTED]> wrote: > > On Fri, 2007-11-30 at 15:51 -0700, Grant Likely wrote: > > > > Add a device_initcall hook to machdep_calls so that platform code > > doesn't > > need to register device_initcalls that must first check what platform > > it is running on. > > > > This should (slightly) speed boot time on kernels that support a lot > > of > > boards and make device_initcall hooks slightly simpler to implement > > because the platform doesn't need to be tested when called. > > > > Signed-off-by: Grant Likely <[EMAIL PROTECTED]> > > --- > > > > Please comment; I think this is a good change, but I'd like some > > feedback. > > Hrm... I'm not too sure about it... > > My initial idea for dealing with that issue was more along the lines of > defining a set of > > machine_xxx_initcall(mach, function) > > Where xxx is (arch,core,subsys,fs,device, whatever...) > > Those could, at first be implemented as a simple macro wrapper that > expands to a function that tests machine_is() and calls the function, > and later one, we can do more fancy things, such as ELF sections with > function pointers in them.
Is that level of sophistication really warranted for this scenario? When I'm writing platform code (and granted I'm focused on the embedded cases) then I've already tested for the board type and I already know if I want to run that code. Typically that code is all contained within a single board file anyway. I'd rather start with the initcall unregistered and register it when the board is probed instead of registering by default and testing for exclusion. In other words it sound like an O(1) problem being solved with an O(n) solution. Cheers, g. -- Grant Likely, B.Sc., P.Eng. Secret Lab Technologies Ltd. [EMAIL PROTECTED] (403) 399-0195 _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev