aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/inode.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <[email protected]>2016-12-13 00:45:17 +0000
committerLinus Torvalds <[email protected]>2016-12-13 02:55:09 +0000
commitf5887c71cf682a6c27e26cb83296d49729f62b3c (patch)
tree7c9eb5f9b311f75b930ae38beec06a11fc15c82b /fs/proc/inode.c
parentproc: just list_del() struct pde_opener (diff)
downloadkernel-f5887c71cf682a6c27e26cb83296d49729f62b3c.tar.gz
kernel-f5887c71cf682a6c27e26cb83296d49729f62b3c.zip
proc: fix type of struct pde_opener::closing field
struct pde_opener::closing is boolean. Link: http://lkml.kernel.org/r/20161029155439.GB1246@avx2 Signed-off-by: Alexey Dobriyan <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
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 907265009b03..f623a3ca2746 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -147,7 +147,7 @@ static void close_pdeo(struct proc_dir_entry *pde, struct pde_opener *pdeo)
spin_lock(&pde->pde_unload_lock);
} else {
struct file *file;
- pdeo->closing = 1;
+ pdeo->closing = true;
spin_unlock(&pde->pde_unload_lock);
file = pdeo->file;
pde->proc_fops->release(file_inode(file), file);