process.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #include <linux/errno.h>
  2. #include <linux/kernel.h>
  3. #include <linux/mm.h>
  4. #include <linux/smp.h>
  5. #include <linux/slab.h>
  6. #include <linux/sched.h>
  7. struct kmem_cache *task_xstate_cachep;
  8. int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
  9. {
  10. *dst = *src;
  11. if (src->thread.xstate) {
  12. dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
  13. GFP_KERNEL);
  14. if (!dst->thread.xstate)
  15. return -ENOMEM;
  16. WARN_ON((unsigned long)dst->thread.xstate & 15);
  17. memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
  18. }
  19. return 0;
  20. }
  21. void free_thread_xstate(struct task_struct *tsk)
  22. {
  23. if (tsk->thread.xstate) {
  24. kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
  25. tsk->thread.xstate = NULL;
  26. }
  27. }
  28. void free_thread_info(struct thread_info *ti)
  29. {
  30. free_thread_xstate(ti->task);
  31. free_pages((unsigned long)ti, get_order(THREAD_SIZE));
  32. }
  33. void arch_task_cache_init(void)
  34. {
  35. task_xstate_cachep =
  36. kmem_cache_create("task_xstate", xstate_size,
  37. __alignof__(union thread_xstate),
  38. SLAB_PANIC, NULL);
  39. }