current.h 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Based on arm/arm64/include/asm/current.h
  4. *
  5. * Copyright (C) 2016 ARM
  6. * Copyright (C) 2017 SiFive
  7. */
  8. #ifndef _ASM_RISCV_CURRENT_H
  9. #define _ASM_RISCV_CURRENT_H
  10. #include <linux/bug.h>
  11. #include <linux/compiler.h>
  12. #ifndef __ASSEMBLY__
  13. struct task_struct;
  14. register struct task_struct *riscv_current_is_tp __asm__("tp");
  15. /*
  16. * This only works because "struct thread_info" is at offset 0 from "struct
  17. * task_struct". This constraint seems to be necessary on other architectures
  18. * as well, but __switch_to enforces it. We can't check TASK_TI here because
  19. * <asm/asm-offsets.h> includes this, and I can't get the definition of "struct
  20. * task_struct" here due to some header ordering problems.
  21. */
  22. static __always_inline struct task_struct *get_current(void)
  23. {
  24. return riscv_current_is_tp;
  25. }
  26. #define current get_current()
  27. register unsigned long current_stack_pointer __asm__("sp");
  28. #endif /* __ASSEMBLY__ */
  29. #endif /* _ASM_RISCV_CURRENT_H */