diff options
author | Haicheng Li <haicheng.li@linux.intel.com> | 2013-10-23 12:39:32 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-10-25 16:54:37 +0900 |
commit | aabe51364f44681cbd83fb1c27ef7d3dbe567c45 (patch) | |
tree | 2e99a154357419819ec22deb039cfbb3fe44fec5 /fs/f2fs/f2fs.h | |
parent | dcdfff65276fdc6dfe5eb1d0aff802dfa7a95e15 (diff) |
f2fs: use bool for booleans
Signed-off-by: Haicheng Li <haicheng.li@linux.intel.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 7ca8c30d8d7..e8f3fd345ca 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -361,8 +361,8 @@ struct f2fs_sb_info { struct rw_semaphore cp_rwsem; /* blocking FS operations */ struct mutex node_write; /* locking node writes */ struct mutex writepages; /* mutex for writepages() */ - int por_doing; /* recovery is doing or not */ - int on_build_free_nids; /* build_free_nids is doing */ + bool por_doing; /* recovery is doing or not */ + bool on_build_free_nids; /* build_free_nids is doing */ struct task_struct *cp_task; /* checkpoint task */ /* for orphan inode management */ |