On Mon, Nov 27, 2000 at 12:39:55AM -0800, David S. Miller wrote: > Also I believe linkers are allowed to arbitrarily reorder members in > the data and bss sections. I could be wrong on this one though. I'm not sure either, but we certainly rely on that behaviour somewhere. Just to make an example fs/dquot.c: int nr_dquots, nr_free_dquots; kernel/sysctl.c: {FS_NRDQUOT, "dquot-nr", &nr_dquots, 2*sizeof(int), The above is ok also on mips in practice though. In 2.2.x there was more of them. Regardless if we're allowed to rely on the ordering the above is bad coding practice because somebody could forget about the dependency on the ordering and put something between nr_dquotes and nr_free_dquotes :), so such dependency should be avoided anyways... Andrea - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/
- Re: Universal debug macros. Peter Samuelson
- Re: Universal debug macros. Andrew E. Mileski
- Re: Universal debug macros. Richard B. Johnson
- Re: Universal debug macros. Andrew E. Mileski
- Re: Universal debug macros. Richard B. Johnson
- Re: Universal debug macros. Andrew E. Mileski
- Re: [PATCH] removal of "static foo = 0" Adam J. Richter
- Re: [PATCH] removal of "static foo = 0" Werner Almesberger
- Re: [PATCH] removal of "static foo = 0&qu... David S. Miller
- Re: [PATCH] removal of "static foo = ... Werner Almesberger
- Re: [PATCH] removal of "static foo = ... Andrea Arcangeli
- Re: [PATCH] removal of "static fo... Michael Meissner
- Re: [PATCH] removal of "stat... Andrea Arcangeli
- Re: [PATCH] removal of "... Richard B. Johnson
- Re: [PATCH] removal of "... Andrea Arcangeli
- Re: [PATCH] removal of "... Horst von Brand
- Re: [PATCH] removal of "... Andrea Arcangeli
- Re: [PATCH] removal of "... Alexander Viro
- Re: [PATCH] removal of "... Michael Meissner
- Re: [PATCH] removal of "... Andreas Schwab
- Re: [PATCH] removal of "... Andrea Arcangeli