cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

stack.S (350B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * purgatory:  stack
      4 *
      5 * Copyright (C) 2014 Red Hat Inc.
      6 */
      7
      8#include <linux/linkage.h>
      9
     10	/* A stack for the loaded kernel.
     11	 * Separate and in the data section so it can be prepopulated.
     12	 */
     13	.data
     14	.balign 4096
     15
     16SYM_DATA_START(stack)
     17	.skip 4096
     18SYM_DATA_END_LABEL(stack, SYM_L_GLOBAL, stack_end)