mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6a6256f9e0
Signed-off-by: Adam Buchbinder <adam.buchbinder@gmail.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: trivial@kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
19 lines
375 B
ArmAsm
19 lines
375 B
ArmAsm
/*
|
|
* purgatory: stack
|
|
*
|
|
* Copyright (C) 2014 Red Hat Inc.
|
|
*
|
|
* This source code is licensed under the GNU General Public License,
|
|
* Version 2. See the file COPYING for more details.
|
|
*/
|
|
|
|
/* A stack for the loaded kernel.
|
|
* Separate and in the data section so it can be prepopulated.
|
|
*/
|
|
.data
|
|
.balign 4096
|
|
.globl stack, stack_end
|
|
|
|
stack:
|
|
.skip 4096
|
|
stack_end:
|