Re: [PATCH 4/4] modules: Add missing entry for __ex_table

2024-01-29 Thread Luis Chamberlain
On Wed, Nov 22, 2023 at 11:18:14PM +0100, del...@kernel.org wrote: > From: Helge Deller > > The entry for __ex_table was missing, which may make __ex_table > become 1- or 2-byte aligned in modules. > Add the entry to ensure it gets 32-bit aligned. > > Signed-off-by: Helge Deller > Cc: # v6.0+

[PATCH 4/4] modules: Add missing entry for __ex_table

2023-11-22 Thread deller
From: Helge Deller The entry for __ex_table was missing, which may make __ex_table become 1- or 2-byte aligned in modules. Add the entry to ensure it gets 32-bit aligned. Signed-off-by: Helge Deller Cc: # v6.0+ --- scripts/module.lds.S | 1 + 1 file changed, 1 insertion(+) diff --git a/scrip