[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20171122171510.GA12161@avx2>
Date: Wed, 22 Nov 2017 20:15:10 +0300
From: Alexey Dobriyan <adobriyan@...il.com>
To: akpm@...ux-foundation.org
Cc: linux-kernel@...r.kernel.org, gorcunov@...nvz.org
Subject: [PATCH] proc: delete children_seq_release()
It is 1:1 wrapper around seq_release().
Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
---
fs/proc/array.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -733,16 +733,10 @@ static int children_seq_open(struct inode *inode, struct file *file)
return ret;
}
-int children_seq_release(struct inode *inode, struct file *file)
-{
- seq_release(inode, file);
- return 0;
-}
-
const struct file_operations proc_tid_children_operations = {
.open = children_seq_open,
.read = seq_read,
.llseek = seq_lseek,
- .release = children_seq_release,
+ .release = seq_release,
};
#endif /* CONFIG_PROC_CHILDREN */
Powered by blists - more mailing lists