mirror of https://gitee.com/openkylin/linux.git
fs/proc/array.c: delete children_seq_release()
It is 1:1 wrapper around seq_release(). Link: http://lkml.kernel.org/r/20171122171510.GA12161@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
20d28cde55
commit
171ef917df
|
@ -736,16 +736,10 @@ static int children_seq_open(struct inode *inode, struct file *file)
|
||||||
return ret;
|
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 = {
|
const struct file_operations proc_tid_children_operations = {
|
||||||
.open = children_seq_open,
|
.open = children_seq_open,
|
||||||
.read = seq_read,
|
.read = seq_read,
|
||||||
.llseek = seq_lseek,
|
.llseek = seq_lseek,
|
||||||
.release = children_seq_release,
|
.release = seq_release,
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_PROC_CHILDREN */
|
#endif /* CONFIG_PROC_CHILDREN */
|
||||||
|
|
Loading…
Reference in New Issue