1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 #ifndef _S390_SECTIONS_H 3 #define _S390_SECTIONS_H 4 5 #include <asm-generic/sections.h> 6 7 /* 8 * .boot.data section contains variables "shar 9 * the decompressed kernel. The decompressor w 10 * copy over to the decompressed image before 11 * 12 * Each variable end up in its own intermediat 13 * those sections are later sorted by alignmen 14 * final .boot.data section, which should be i 15 * the decompressed kernel (that is checked du 16 */ 17 #define __bootdata(var) __section(".boot.data. 18 19 /* 20 * .boot.preserved.data is similar to .boot.da 21 * .init section and thus will be preserved fo 22 * kernel. 23 */ 24 #define __bootdata_preserved(var) __section(". 25 26 extern char *__samode31, *__eamode31; 27 extern char *__stext_amode31, *__etext_amode31 28 29 #endif 30
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.