preempt.S 368 B

12345678910111213141516171819202122232425
  1. #include <linux/linkage.h>
  2. #include <asm/dwarf2.h>
  3. #include <asm/asm.h>
  4. #include <asm/calling.h>
  5. ENTRY(___preempt_schedule)
  6. CFI_STARTPROC
  7. SAVE_ALL
  8. call preempt_schedule
  9. RESTORE_ALL
  10. ret
  11. CFI_ENDPROC
  12. #ifdef CONFIG_CONTEXT_TRACKING
  13. ENTRY(___preempt_schedule_context)
  14. CFI_STARTPROC
  15. SAVE_ALL
  16. call preempt_schedule_context
  17. RESTORE_ALL
  18. ret
  19. CFI_ENDPROC
  20. #endif