aboutsummaryrefslogtreecommitdiffstats
path: root/module/zfs/zpl_file.c
diff options
context:
space:
mode:
authorFeng Sun <[email protected]>2017-09-20 03:19:08 +0800
committerBrian Behlendorf <[email protected]>2017-09-19 12:19:08 -0700
commit18a2485fc8061f7393ca19f7291366bc46fe9bf7 (patch)
tree3ce3535c405e63ffbaa0bf5e7d65b6f200bbe609 /module/zfs/zpl_file.c
parent34d00e7aba13076e47dbd1791bd955c1e2f7b0c9 (diff)
misc: fix meaningless values
Reviewed-by: George Melikov <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Tim Chase <[email protected]> Signed-off-by: Feng Sun <[email protected]> Closes #6658
Diffstat (limited to 'module/zfs/zpl_file.c')
-rw-r--r--module/zfs/zpl_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/zpl_file.c b/module/zfs/zpl_file.c
index 4805abe69..4dfa0dea4 100644
--- a/module/zfs/zpl_file.c
+++ b/module/zfs/zpl_file.c
@@ -527,7 +527,7 @@ zpl_mmap(struct file *filp, struct vm_area_struct *vma)
return (error);
mutex_enter(&zp->z_lock);
- zp->z_is_mapped = 1;
+ zp->z_is_mapped = B_TRUE;
mutex_exit(&zp->z_lock);
return (error);