Hi, Following are some patches to fix some IA64 specific warnings I am seeing when building with gcc 4. I'm pretty sure they can't hurt people not using gcc 4.
The only IA64 specific one that I still see is include/asm/mmu_context.h:67: warning: type qualifiers ignored on function return type This is because mmu_context_t is defined as volatile for a good reason /* * Type for a context number. We declare it volatile to ensure * proper ordering when it's accessed outside of spinlock'd critical * sections (e.g., as done in activate_mm() and init_new_context()). */ However, when a function returns a mmu_context_t it ends up with the qualified return type (which according to this old message http://gcc.gnu.org/ml/gcc-patches/2000-10/msg00814.html doesn't mean anything, unless something has changed). So I'm not sure what the best solution is for that one. Thanks, -i - To unsubscribe from this list: send the line "unsubscribe linux-ia64" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
