2019-06-04 10:11:07 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2006-09-26 10:52:29 +02:00
|
|
|
/*
|
|
|
|
* Save registers before calling assembly functions. This avoids
|
|
|
|
* disturbance of register allocation in some inline assembly constructs.
|
|
|
|
* Copyright 2001,2002 by Andi Kleen, SuSE Labs.
|
|
|
|
*/
|
2023-08-06 23:59:56 +09:00
|
|
|
#include <linux/export.h>
|
2011-05-31 22:21:54 +02:00
|
|
|
#include <linux/linkage.h>
|
2015-06-03 18:29:26 +02:00
|
|
|
#include "calling.h"
|
2014-04-17 17:17:26 +09:00
|
|
|
#include <asm/asm.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2023-05-30 16:07:41 -07:00
|
|
|
THUNK preempt_schedule_thunk, preempt_schedule
|
|
|
|
THUNK preempt_schedule_notrace_thunk, preempt_schedule_notrace
|
|
|
|
EXPORT_SYMBOL(preempt_schedule_thunk)
|
|
|
|
EXPORT_SYMBOL(preempt_schedule_notrace_thunk)
|