[ Upstream commit 753547de0daecbdbd1af3618987ddade325d9aaa ]
The ___kcrctab section holds an array of 32-bit CRC values.
Add a .balign 4 to tell the linker the correct memory alignment.
Fixes: f3304ecd7f
("linux/export: use inline assembler to populate symbol CRCs")
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
21 lines
531 B
C
21 lines
531 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Please do not include this explicitly.
|
|
* This is used by C files generated by modpost.
|
|
*/
|
|
|
|
#ifndef __LINUX_EXPORT_INTERNAL_H__
|
|
#define __LINUX_EXPORT_INTERNAL_H__
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/types.h>
|
|
|
|
#define SYMBOL_CRC(sym, crc, sec) \
|
|
asm(".section \"___kcrctab" sec "+" #sym "\",\"a\"" "\n" \
|
|
".balign 4" "\n" \
|
|
"__crc_" #sym ":" "\n" \
|
|
".long " #crc "\n" \
|
|
".previous" "\n")
|
|
|
|
#endif /* __LINUX_EXPORT_INTERNAL_H__ */
|