aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r--fs/proc/array.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index d67a72dcb92c..598803576e4c 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -736,16 +736,10 @@ static int children_seq_open(struct inode *inode, struct file *file)
736 return ret; 736 return ret;
737} 737}
738 738
739int children_seq_release(struct inode *inode, struct file *file)
740{
741 seq_release(inode, file);
742 return 0;
743}
744
745const struct file_operations proc_tid_children_operations = { 739const struct file_operations proc_tid_children_operations = {
746 .open = children_seq_open, 740 .open = children_seq_open,
747 .read = seq_read, 741 .read = seq_read,
748 .llseek = seq_lseek, 742 .llseek = seq_lseek,
749 .release = children_seq_release, 743 .release = seq_release,
750}; 744};
751#endif /* CONFIG_PROC_CHILDREN */ 745#endif /* CONFIG_PROC_CHILDREN */