Re: New (now current development process)

From: David Lang
Date: Wed Nov 02 2005 - 15:12:51 EST


On Wed, 2 Nov 2005, Dave Jones wrote:

On Wed, Nov 02, 2005 at 07:54:04AM -0800, Linus Torvalds wrote:

> > For your last suggestion, maybe someone can automate running Andi's
> > bloat-o-meter? I think the hard part is maintaining comparable configs.
>
> Yes. And we should probably make -Os the default. Apparently Fedora
> already does that by just forcibly hacking the Kconfig files.

(excuse any typos, this wireless connection is god-awful)
We do. We rip out the dependancyon CONFIG_EMBEDDED, and build
with OPTIMISE_FOR_SIZE set. At least we usually do.
Once every so often, we hit something which throws a spanner
in the works, like the "x86-64 doesn't boot any more" problem
that was fixed by the patch that Alexandre posted earlier
this week.

Most of the time now, when we hit bugs with -Os, it seems to be due
to broken asm constraints in the kernel rather than actual
gcc bugs, but of course, they also occur from time to time,
whereas the same code works just fine with -O2.
I think part of th reason for this is exactly because it
doesn't get a great deal of testing.

I used to compile with Os on all my kernels, but when the alignment settings got added to the embedded section a few kernels ago and I saw that they all default to 0 (no alignment) it scared me off, becouse I know that unaligned accesses can be extremely expensive, and I wasn't comfortable that I had the right info to set them for the different CPU's that I have.

I would really like to see Os move out of the embedded section so that it can be tested (and used) without having to worry about all those other settings. The other option would be to have all those other settings get good defaults (with an option to reset them to the defaults when you change the CPU type).

David Lang

--
There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies. And the other way is to make it so complicated that there are no obvious deficiencies.
-- C.A.R. Hoare
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/