diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2018-11-15 09:40:08 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2018-11-15 19:25:46 +0300 |
commit | 3e159b9553e4024cbdaa25bb8059f79f47c26925 (patch) | |
tree | 1db5ffd65eb8e46dab678244865bb4fd86ba4ad5 /fs/ext2 | |
parent | 569ae9209425560e1a94114231d0782e1cc19df1 (diff) | |
download | linux-3e159b9553e4024cbdaa25bb8059f79f47c26925.tar.xz |
ext2: change reusable parameter to true when calling mb_cache_entry_create()
Reusable parameter of mb_cache_entry_create() is bool type,
so it's better to set true instead of 1.
Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext2')
-rw-r--r-- | fs/ext2/xattr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext2/xattr.c b/fs/ext2/xattr.c index 62d9a659a8ff..67970bfa79fb 100644 --- a/fs/ext2/xattr.c +++ b/fs/ext2/xattr.c @@ -835,7 +835,8 @@ ext2_xattr_cache_insert(struct mb_cache *cache, struct buffer_head *bh) __u32 hash = le32_to_cpu(HDR(bh)->h_hash); int error; - error = mb_cache_entry_create(cache, GFP_NOFS, hash, bh->b_blocknr, 1); + error = mb_cache_entry_create(cache, GFP_NOFS, hash, bh->b_blocknr, + true); if (error) { if (error == -EBUSY) { ea_bdebug(bh, "already in cache (%d cache entries)", |