blob: 9b7a459a4613d8573a7c84ac3bf970402431c31e [file] [log] [blame]
Paul Mundtcbf6b1b2010-01-12 19:01:11 +09001#include <linux/mm.h>
2#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/slab.h>
Paul Mundtcbf6b1b2010-01-12 19:01:11 +09004#include <linux/sched.h>
Filippo Arcidiacono5d920bb2012-04-19 15:45:57 +09005#include <linux/export.h>
6#include <linux/stackprotector.h>
Paul Mundtcbf6b1b2010-01-12 19:01:11 +09007
Paul Mundt0ea820c2010-01-13 12:51:40 +09008struct kmem_cache *task_xstate_cachep = NULL;
9unsigned int xstate_size;
10
Filippo Arcidiacono5d920bb2012-04-19 15:45:57 +090011#ifdef CONFIG_CC_STACKPROTECTOR
12unsigned long __stack_chk_guard __read_mostly;
13EXPORT_SYMBOL(__stack_chk_guard);
14#endif
15
Suresh Siddha55ccf3f2012-05-16 15:03:51 -070016/*
17 * this gets called so that we can store lazy state into memory and copy the
18 * current task into the new thread.
19 */
Paul Mundt0ea820c2010-01-13 12:51:40 +090020int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
21{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -070022#ifdef CONFIG_SUPERH32
23 unlazy_fpu(src, task_pt_regs(src));
24#endif
Paul Mundt0ea820c2010-01-13 12:51:40 +090025 *dst = *src;
26
27 if (src->thread.xstate) {
28 dst->thread.xstate = kmem_cache_alloc(task_xstate_cachep,
29 GFP_KERNEL);
30 if (!dst->thread.xstate)
31 return -ENOMEM;
32 memcpy(dst->thread.xstate, src->thread.xstate, xstate_size);
33 }
34
35 return 0;
36}
37
38void free_thread_xstate(struct task_struct *tsk)
39{
40 if (tsk->thread.xstate) {
41 kmem_cache_free(task_xstate_cachep, tsk->thread.xstate);
42 tsk->thread.xstate = NULL;
43 }
44}
45
Thomas Gleixnerdf9a7b92012-05-05 15:05:46 +000046void arch_release_task_struct(struct task_struct *tsk)
Paul Mundtcbf6b1b2010-01-12 19:01:11 +090047{
Thomas Gleixnerdf9a7b92012-05-05 15:05:46 +000048 free_thread_xstate(tsk);
Paul Mundtcbf6b1b2010-01-12 19:01:11 +090049}
50
Paul Mundt0ea820c2010-01-13 12:51:40 +090051void arch_task_cache_init(void)
52{
53 if (!xstate_size)
54 return;
55
56 task_xstate_cachep = kmem_cache_create("task_xstate", xstate_size,
57 __alignof__(union thread_xstate),
58 SLAB_PANIC | SLAB_NOTRACK, NULL);
59}
60
61#ifdef CONFIG_SH_FPU_EMU
62# define HAVE_SOFTFP 1
63#else
64# define HAVE_SOFTFP 0
65#endif
66
Paul Mundt4a6feab2010-04-21 12:20:42 +090067void __cpuinit init_thread_xstate(void)
Paul Mundt0ea820c2010-01-13 12:51:40 +090068{
69 if (boot_cpu_data.flags & CPU_HAS_FPU)
70 xstate_size = sizeof(struct sh_fpu_hard_struct);
71 else if (HAVE_SOFTFP)
72 xstate_size = sizeof(struct sh_fpu_soft_struct);
73 else
74 xstate_size = 0;
75}