2010-12-08 11:56:41

by Jovi Zhang

[permalink] [raw]
Subject: [PATCH] proc: fix single_open usage

fix some single_open function usage, use private_data as parameter

Signed-off-by: Jovi Zhang <[email protected]>

fs/proc/base.c | 29 +++--------------------------
1 files changed, 3 insertions(+), 26 deletions(-)

diff --git a/fs/proc/base.c b/fs/proc/base.c
index f3d02ca..74a7d92 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -751,14 +751,7 @@ static int proc_single_show(struct seq_file *m, void *v)

static int proc_single_open(struct inode *inode, struct file *filp)
{
- int ret;
- ret = single_open(filp, proc_single_show, NULL);
- if (!ret) {
- struct seq_file *m = filp->private_data;
-
- m->private = inode;
- }
- return ret;
+ return single_open(filp, proc_single_show, inode);
}

static const struct file_operations proc_single_file_operations = {
@@ -1386,15 +1379,7 @@ sched_write(struct file *file, const char __user *buf,

static int sched_open(struct inode *inode, struct file *filp)
{
- int ret;
-
- ret = single_open(filp, sched_show, NULL);
- if (!ret) {
- struct seq_file *m = filp->private_data;
-
- m->private = inode;
- }
- return ret;
+ return single_open(filp, sched_show, inode);
}

static const struct file_operations proc_pid_sched_operations = {
@@ -1454,15 +1439,7 @@ static int comm_show(struct seq_file *m, void *v)

static int comm_open(struct inode *inode, struct file *filp)
{
- int ret;
-
- ret = single_open(filp, comm_show, NULL);
- if (!ret) {
- struct seq_file *m = filp->private_data;
-
- m->private = inode;
- }
- return ret;
+ return single_open(filp, comm_show, inode);
}

static const struct file_operations proc_pid_set_comm_operations = {


2010-12-08 21:13:44

by David Rientjes

[permalink] [raw]
Subject: Re: [PATCH] proc: fix single_open usage

On Mon, 6 Dec 2010, [email protected] wrote:

> fix some single_open function usage, use private_data as parameter
>
> Signed-off-by: Jovi Zhang <[email protected]>

Acked-by: David Rientjes <[email protected]>

2010-12-10 10:17:45

by KOSAKI Motohiro

[permalink] [raw]
Subject: Re: [PATCH] proc: fix single_open usage

> fix some single_open function usage, use private_data as parameter
>
> Signed-off-by: Jovi Zhang <[email protected]>
>
> fs/proc/base.c | 29 +++--------------------------
> 1 files changed, 3 insertions(+), 26 deletions(-)

Looks good to me.
Reviewed-by: KOSAKI Motohiro <[email protected]>


>
> diff --git a/fs/proc/base.c b/fs/proc/base.c
> index f3d02ca..74a7d92 100644
> --- a/fs/proc/base.c
> +++ b/fs/proc/base.c
> @@ -751,14 +751,7 @@ static int proc_single_show(struct seq_file *m, void *v)
>
> static int proc_single_open(struct inode *inode, struct file *filp)
> {
> - int ret;
> - ret = single_open(filp, proc_single_show, NULL);
> - if (!ret) {
> - struct seq_file *m = filp->private_data;
> -
> - m->private = inode;
> - }
> - return ret;
> + return single_open(filp, proc_single_show, inode);
> }
>
> static const struct file_operations proc_single_file_operations = {
> @@ -1386,15 +1379,7 @@ sched_write(struct file *file, const char __user *buf,
>
> static int sched_open(struct inode *inode, struct file *filp)
> {
> - int ret;
> -
> - ret = single_open(filp, sched_show, NULL);
> - if (!ret) {
> - struct seq_file *m = filp->private_data;
> -
> - m->private = inode;
> - }
> - return ret;
> + return single_open(filp, sched_show, inode);
> }
>
> static const struct file_operations proc_pid_sched_operations = {
> @@ -1454,15 +1439,7 @@ static int comm_show(struct seq_file *m, void *v)
>
> static int comm_open(struct inode *inode, struct file *filp)
> {
> - int ret;
> -
> - ret = single_open(filp, comm_show, NULL);
> - if (!ret) {
> - struct seq_file *m = filp->private_data;
> -
> - m->private = inode;
> - }
> - return ret;
> + return single_open(filp, comm_show, inode);
> }
>
> static const struct file_operations proc_pid_set_comm_operations = {