https://github.com/torvalds/linux
Raw File
Tip revision: 39da7c509acff13fc8cb12ec1bb20337c988ed36 authored by Linus Torvalds on 09 April 2017, 16:49:44 UTC
Linux 4.11-rc6
Tip revision: 39da7c5
stack.S
/*
 * 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:
back to top