On Tue, Sep 06, 2016 at 08:33:20PM -0300, Thiago Jung Bauermann wrote: > Thanks for reporting the problem and finding the commit that caused it. > The only thing in commit 5c01cdd2d4bc which can affect kexec_load is the > fact that struct kexec_segment has a new member. > > This is probably breaking the ABI on ARM, then. I verified that kexec_load > kept working on ppc64le with a kexec binary compiled with the original > struct kexec_segment definition, but apparently I got lucky. That _will_ definitely break the ABI on ARM, and pretty much all 32-bit architectures. It's a silly thing to do, and I'm really surprised that it passed through review without being spotted. The reason you "got lucky" with ppc64le is that there was probably padding in the structure, and you happened to place your new member in that padding, so the structure size didn't change. For 32-bit architectures, there will be no padding - both the pointers and size_t members will be 32-bit, and will be naturally aligned, and hence there will be no padding. Any addition to the structure will change the size of the structure. Any change to a UAPI header needs to be carefully considered and questioned as it is always a potential userspace breakage - and in the kernel, we're supposed to be doing our up-most to avoid breaking userspace. It's not like it was in the old days when we didn't have the UAPI seperate - today, we can find these things by looking at the patch diffstat and seeing whether any file in "uapi" is touched. That should be the trigger for a really in-depth review of the change. -- RMK's Patch system: http://www.armlinux.org.uk/developer/patches/ FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up according to speedtest.net. -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html