mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 04:25:09 +07:00
eacbb218fb
This patch exports tm_enable()/tm_disable/tm_abort() APIs, which will be used for PR KVM transactional memory logic. Signed-off-by: Simon Guo <wei.guo.simon@gmail.com> Reviewed-by: Paul Mackerras <paulus@ozlabs.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
23 lines
624 B
C
23 lines
624 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Transactional memory support routines to reclaim and recheckpoint
|
|
* transactional process state.
|
|
*
|
|
* Copyright 2012 Matt Evans & Michael Neuling, IBM Corporation.
|
|
*/
|
|
|
|
#include <uapi/asm/tm.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
extern void tm_reclaim(struct thread_struct *thread,
|
|
uint8_t cause);
|
|
extern void tm_reclaim_current(uint8_t cause);
|
|
extern void tm_recheckpoint(struct thread_struct *thread);
|
|
extern void tm_save_sprs(struct thread_struct *thread);
|
|
extern void tm_restore_sprs(struct thread_struct *thread);
|
|
|
|
extern bool tm_suspend_disabled;
|
|
|
|
#endif /* __ASSEMBLY__ */
|