tm.h 854 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Transactional memory support routines to reclaim and recheckpoint
  3. * transactional process state.
  4. *
  5. * Copyright 2012 Matt Evans & Michael Neuling, IBM Corporation.
  6. */
  7. #include <uapi/asm/tm.h>
  8. #ifndef __ASSEMBLY__
  9. #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
  10. extern void do_load_up_transact_fpu(struct thread_struct *thread);
  11. extern void do_load_up_transact_altivec(struct thread_struct *thread);
  12. #endif
  13. extern void tm_enable(void);
  14. extern void tm_reclaim(struct thread_struct *thread,
  15. unsigned long orig_msr, uint8_t cause);
  16. extern void tm_reclaim_current(uint8_t cause);
  17. extern void tm_recheckpoint(struct thread_struct *thread,
  18. unsigned long orig_msr);
  19. extern void tm_abort(uint8_t cause);
  20. extern void tm_save_sprs(struct thread_struct *thread);
  21. extern void tm_restore_sprs(struct thread_struct *thread);
  22. #endif /* __ASSEMBLY__ */