xref: /kernel/linux/linux-5.10/arch/x86/realmode/rm/stack.S
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-5.10/arch/x86/realmode/rm/
18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Common heap and stack allocations
48c2ecf20Sopenharmony_ci */
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci#include <linux/linkage.h>
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci	.data
98c2ecf20Sopenharmony_ciSYM_DATA(HEAP,		.long rm_heap)
108c2ecf20Sopenharmony_ciSYM_DATA(heap_end,	.long rm_stack)
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci	.bss
138c2ecf20Sopenharmony_ci	.balign	16
148c2ecf20Sopenharmony_ciSYM_DATA(rm_heap,	.space 2048)
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ciSYM_DATA_START(rm_stack)
178c2ecf20Sopenharmony_ci	.space	2048
188c2ecf20Sopenharmony_ciSYM_DATA_END_LABEL(rm_stack, SYM_L_GLOBAL, rm_stack_end)
19

Indexes created Thu Nov 07 10:32:03 CST 2024