2 * General MIPS MT support routines, usable in AP/SP, SMVP, or SMTC kernels
3 * Copyright (C) 2005 Mips Technologies, Inc
6 #include <linux/cpumask.h>
7 #include <linux/delay.h>
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <linux/sched.h>
11 #include <linux/security.h>
12 #include <linux/types.h>
13 #include <asm/uaccess.h>
16 * CPU mask used to set process affinity for MT VPEs/TCs with FPUs
18 cpumask_t mt_fpu_cpumask;
20 static int fpaff_threshold = -1;
21 unsigned long mt_fpemul_threshold = 0;
24 * Replacement functions for the sys_sched_setaffinity() and
25 * sys_sched_getaffinity() system calls, so that we can integrate
26 * FPU affinity with the user's requested processor affinity.
27 * This code is 98% identical with the sys_sched_setaffinity()
28 * and sys_sched_getaffinity() system calls, and should be
29 * updated when kernel/sched.c changes.
33 * find_process_by_pid - find a process with a matching PID value.
34 * used in sys_sched_set/getaffinity() in kernel/sched.c, so
37 static inline struct task_struct *find_process_by_pid(pid_t pid)
39 return pid ? find_task_by_vpid(pid) : current;
44 * mipsmt_sys_sched_setaffinity - set the cpu affinity of a process
46 asmlinkage long mipsmt_sys_sched_setaffinity(pid_t pid, unsigned int len,
47 unsigned long __user *user_mask_ptr)
50 cpumask_t effective_mask;
52 struct task_struct *p;
53 struct thread_info *ti;
56 if (len < sizeof(new_mask))
59 if (copy_from_user(&new_mask, user_mask_ptr, sizeof(new_mask)))
63 read_lock(&tasklist_lock);
65 p = find_process_by_pid(pid);
67 read_unlock(&tasklist_lock);
73 * It is not safe to call set_cpus_allowed with the
74 * tasklist_lock held. We will bump the task_struct's
75 * usage count and drop tasklist_lock before invoking
80 euid = current_euid();
82 if (euid != p->cred->euid && euid != p->cred->uid &&
83 !capable(CAP_SYS_NICE)) {
84 read_unlock(&tasklist_lock);
88 retval = security_task_setscheduler(p, 0, NULL);
92 /* Record new user-specified CPU set for future reference */
93 p->thread.user_cpus_allowed = new_mask;
95 /* Unlock the task list */
96 read_unlock(&tasklist_lock);
98 /* Compute new global allowed CPU set if necessary */
99 ti = task_thread_info(p);
100 if (test_ti_thread_flag(ti, TIF_FPUBOUND) &&
101 cpus_intersects(new_mask, mt_fpu_cpumask)) {
102 cpus_and(effective_mask, new_mask, mt_fpu_cpumask);
103 retval = set_cpus_allowed(p, effective_mask);
105 clear_ti_thread_flag(ti, TIF_FPUBOUND);
106 retval = set_cpus_allowed(p, new_mask);
116 * mipsmt_sys_sched_getaffinity - get the cpu affinity of a process
118 asmlinkage long mipsmt_sys_sched_getaffinity(pid_t pid, unsigned int len,
119 unsigned long __user *user_mask_ptr)
121 unsigned int real_len;
124 struct task_struct *p;
126 real_len = sizeof(mask);
131 read_lock(&tasklist_lock);
134 p = find_process_by_pid(pid);
137 retval = security_task_getscheduler(p);
141 cpus_and(mask, p->thread.user_cpus_allowed, cpu_possible_map);
144 read_unlock(&tasklist_lock);
148 if (copy_to_user(user_mask_ptr, &mask, real_len))
154 static int __init fpaff_thresh(char *str)
156 get_option(&str, &fpaff_threshold);
159 __setup("fpaff=", fpaff_thresh);
162 * FPU Use Factor empirically derived from experiments on 34K
164 #define FPUSEFACTOR 2000
166 static __init int mt_fp_affinity_init(void)
168 if (fpaff_threshold >= 0) {
169 mt_fpemul_threshold = fpaff_threshold;
171 mt_fpemul_threshold =
172 (FPUSEFACTOR * (loops_per_jiffy/(500000/HZ))) / HZ;
174 printk(KERN_DEBUG "FPU Affinity set after %ld emulations\n",
175 mt_fpemul_threshold);
179 arch_initcall(mt_fp_affinity_init);