Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98562ad8 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by Linus Torvalds
Browse files

module: explicitly align module_version_attribute structure



We force particular alignment when we generate attribute structures
when generation MODULE_VERSION() data and we need to make sure that
this alignment is followed when we iterate over these structures,
otherwise we may crash on platforms whose natural alignment is not
sizeof(void *), such as m68k.

Reported-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarDmitry Torokhov <dtor@vmware.com>
[ There are more issues here, but the fixes are incredibly ugly - Linus ]
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 5fb24b81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ struct module_version_attribute {
	struct module_attribute mattr;
	const char *module_name;
	const char *version;
};
} __attribute__ ((__aligned__(sizeof(void *))));

struct module_kobject
{