Browse Source

cpuset: simplify proc_cpuset_show()

Use the ONE macro instead of REG, and we can simplify proc_cpuset_show().

Signed-off-by: Zefan Li <lizefan@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Zefan Li 11 years ago
parent
commit
52de4779f2
3 changed files with 7 additions and 31 deletions
  1. 2 18
      fs/proc/base.c
  2. 2 1
      include/linux/cpuset.h
  3. 3 12
      kernel/cpuset.c

+ 2 - 18
fs/proc/base.c

@@ -376,22 +376,6 @@ static const struct file_operations proc_lstats_operations = {
 
 
 #endif
 #endif
 
 
-#ifdef CONFIG_PROC_PID_CPUSET
-
-static int cpuset_open(struct inode *inode, struct file *file)
-{
-	struct pid *pid = PROC_I(inode)->pid;
-	return single_open(file, proc_cpuset_show, pid);
-}
-
-static const struct file_operations proc_cpuset_operations = {
-	.open		= cpuset_open,
-	.read		= seq_read,
-	.llseek		= seq_lseek,
-	.release	= single_release,
-};
-#endif
-
 static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
 static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
 			  struct pid *pid, struct task_struct *task)
 			  struct pid *pid, struct task_struct *task)
 {
 {
@@ -2558,7 +2542,7 @@ static const struct pid_entry tgid_base_stuff[] = {
 	REG("latency",  S_IRUGO, proc_lstats_operations),
 	REG("latency",  S_IRUGO, proc_lstats_operations),
 #endif
 #endif
 #ifdef CONFIG_PROC_PID_CPUSET
 #ifdef CONFIG_PROC_PID_CPUSET
-	REG("cpuset",     S_IRUGO, proc_cpuset_operations),
+	ONE("cpuset",     S_IRUGO, proc_cpuset_show),
 #endif
 #endif
 #ifdef CONFIG_CGROUPS
 #ifdef CONFIG_CGROUPS
 	ONE("cgroup",  S_IRUGO, proc_cgroup_show),
 	ONE("cgroup",  S_IRUGO, proc_cgroup_show),
@@ -2904,7 +2888,7 @@ static const struct pid_entry tid_base_stuff[] = {
 	REG("latency",  S_IRUGO, proc_lstats_operations),
 	REG("latency",  S_IRUGO, proc_lstats_operations),
 #endif
 #endif
 #ifdef CONFIG_PROC_PID_CPUSET
 #ifdef CONFIG_PROC_PID_CPUSET
-	REG("cpuset",    S_IRUGO, proc_cpuset_operations),
+	ONE("cpuset",    S_IRUGO, proc_cpuset_show),
 #endif
 #endif
 #ifdef CONFIG_CGROUPS
 #ifdef CONFIG_CGROUPS
 	ONE("cgroup",  S_IRUGO, proc_cgroup_show),
 	ONE("cgroup",  S_IRUGO, proc_cgroup_show),

+ 2 - 1
include/linux/cpuset.h

@@ -86,7 +86,8 @@ extern void __cpuset_memory_pressure_bump(void);
 
 
 extern void cpuset_task_status_allowed(struct seq_file *m,
 extern void cpuset_task_status_allowed(struct seq_file *m,
 					struct task_struct *task);
 					struct task_struct *task);
-extern int proc_cpuset_show(struct seq_file *, void *);
+extern int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
+			    struct pid *pid, struct task_struct *tsk);
 
 
 extern int cpuset_mem_spread_node(void);
 extern int cpuset_mem_spread_node(void);
 extern int cpuset_slab_spread_node(void);
 extern int cpuset_slab_spread_node(void);

+ 3 - 12
kernel/cpuset.c

@@ -2729,10 +2729,9 @@ void __cpuset_memory_pressure_bump(void)
  *    and we take cpuset_mutex, keeping cpuset_attach() from changing it
  *    and we take cpuset_mutex, keeping cpuset_attach() from changing it
  *    anyway.
  *    anyway.
  */
  */
-int proc_cpuset_show(struct seq_file *m, void *unused_v)
+int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
+		     struct pid *pid, struct task_struct *tsk)
 {
 {
-	struct pid *pid;
-	struct task_struct *tsk;
 	char *buf, *p;
 	char *buf, *p;
 	struct cgroup_subsys_state *css;
 	struct cgroup_subsys_state *css;
 	int retval;
 	int retval;
@@ -2742,24 +2741,16 @@ int proc_cpuset_show(struct seq_file *m, void *unused_v)
 	if (!buf)
 	if (!buf)
 		goto out;
 		goto out;
 
 
-	retval = -ESRCH;
-	pid = m->private;
-	tsk = get_pid_task(pid, PIDTYPE_PID);
-	if (!tsk)
-		goto out_free;
-
 	retval = -ENAMETOOLONG;
 	retval = -ENAMETOOLONG;
 	rcu_read_lock();
 	rcu_read_lock();
 	css = task_css(tsk, cpuset_cgrp_id);
 	css = task_css(tsk, cpuset_cgrp_id);
 	p = cgroup_path(css->cgroup, buf, PATH_MAX);
 	p = cgroup_path(css->cgroup, buf, PATH_MAX);
 	rcu_read_unlock();
 	rcu_read_unlock();
 	if (!p)
 	if (!p)
-		goto out_put_task;
+		goto out_free;
 	seq_puts(m, p);
 	seq_puts(m, p);
 	seq_putc(m, '\n');
 	seq_putc(m, '\n');
 	retval = 0;
 	retval = 0;
-out_put_task:
-	put_task_struct(tsk);
 out_free:
 out_free:
 	kfree(buf);
 	kfree(buf);
 out:
 out: