summaryrefslogtreecommitdiffstats
path: root/fs/proc/inode.c
diff options
context:
space:
mode:
authorAlexey Dobriyan2016-12-13 01:45:14 +0100
committerLinus Torvalds2016-12-13 03:55:09 +0100
commit06a0c4175db68912981fa34c24384d8b1a58c6dc (patch)
tree6fd9e616808a972af4338b3741bfd13e0c386502 /fs/proc/inode.c
parentproc: make struct struct map_files_info::len unsigned int (diff)
downloadkernel-qcow2-linux-06a0c4175db68912981fa34c24384d8b1a58c6dc.tar.gz
kernel-qcow2-linux-06a0c4175db68912981fa34c24384d8b1a58c6dc.tar.xz
kernel-qcow2-linux-06a0c4175db68912981fa34c24384d8b1a58c6dc.zip
proc: just list_del() struct pde_opener
list_del_init() is too much, structure will be freed in three lines anyway. Link: http://lkml.kernel.org/r/20161029155313.GA1246@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/inode.c')
-rw-r--r--fs/proc/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/inode.c b/fs/proc/inode.c
index e69ebe648a34..907265009b03 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -152,7 +152,7 @@ static void close_pdeo(struct proc_dir_entry *pde, struct pde_opener *pdeo)
file = pdeo->file;
pde->proc_fops->release(file_inode(file), file);
spin_lock(&pde->pde_unload_lock);
- list_del_init(&pdeo->lh);
+ list_del(&pdeo->lh);
if (pdeo->c)
complete(pdeo->c);
kfree(pdeo);