summaryrefslogtreecommitdiffstats
path: root/arch/arm64/kernel/scs.c
blob: acc6741d1a4019a71327756562cd9f68a3976882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: GPL-2.0
/*
 * Shadow Call Stack support.
 *
 * Copyright (C) 2019 Google LLC
 */

#include <linux/percpu.h>
#include <asm/scs.h>

/* Allocate a static per-CPU shadow stack */
#define DEFINE_SCS(name)						\
	DEFINE_PER_CPU(unsigned long [SCS_SIZE/sizeof(long)], name)	\

DEFINE_SCS(irq_shadow_call_stack);