On Friday 04 May 2007, Paul Fulghum wrote: > > > - It is fishy that apart from one outlier in kexec.h, synclink.h is the > > only header file which uses compat_ulong_t. Are we doing this right? > > Arnd, do you have any comment on this?
I think most others just define the compat data structures in the same file that implements the headers, inside the same #ifdef that hides the functions using them. This makes sense, because the data structures here don't define an interface, but rather describe what the interface looks like in the 32 bit case. > It seems like the compatible types should be available > in something that is already commonly used like linux/types.h > > I'm fine with it either way. I'm not in > a position to be making those kinds of decisions > for widely used infrastructure, so I'll leave > that for someone further up the food chain. All common compat_* data structures are defined in include/{linux,asm}/compat.h, which are empty if CONFIG_COMPAT=n. It's against our normal conventions to hide declarations inside an #ifdef, but I can see that it does keep the code size down to make it impossible to compile code that is used for compat on architectures that don't need it. Arnd <>< - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/