Re: test10-pre7

From: Keith Owens (kaos@ocs.com.au)
Date: Tue Oct 31 2000 - 09:02:10 EST


On Tue, 31 Oct 2000 09:37:09 +0000 (GMT),
Russell King <rmk@arm.linux.org.uk> wrote:
>Keith Owens writes:
>> kbuild 2.5 splits link order into three categories. Those that must
>> come first, in the order they are specified - LINK_FIRST. Those that
>> must come last, in the order they are specified - LINK_LAST.
>Take the instance where we need to link a.o first, z.o second, f.o third
>and p.o fourth. How does LINK_FIRST / LINK_LAST guarantee this?
>
>LINK_FIRST = a.o z.o
>LINK_LAST = f.o p.o
>
>But then what guarantees that 'a.o' will be linked before 'z.o'?

LINK_FIRST is processed in the order it is specified, so a.o will be
linked before z.o when both are present. See the patch.

>A first/last implementation can *not* specify precisely a link order without
>guaranteeing that the order of the LINK_FIRST *and* the LINK_LAST objects
>is preserved, which incidentally is the same requirement for the obj-y
>implementation.

It is preserved, see the patch.

>I don't see what this LINK_FIRST / LINK_LAST gains us other than more
>complexity for zero gain.

The vast majority of objects have no link order dependencies. You only
specify LINK_FIRST or LINK_LAST where it is needed and only for the
small subset of objects that have critical ordering.

There are 82 obj-$(CONFIG_xxx) entries in drivers/scsi. Which ones
must be executed first? Which ones must be executed last? Why do
these requirements (if any) exist? Can I safely change the order of
any of the driver/scsi entries? If not, why not?

LINK_FIRST and LINK_LAST serve two purposes. They self document the
link order where that order matters. And they solve the problem of
multi part objects being linked into the kernel, although that problem
_may_ have other solutions. Having documentation makes life easier for
everybody. Please do not say that the link order could be documented
in the existing Makefiles, that method has completely failed to work.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Oct 31 2000 - 21:00:29 EST