projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f652e9d
)
f2fs: use unlikely for release case
author
LiFan
<fanofcode.li@samsung.com>
Tue, 5 Dec 2017 08:38:01 +0000
(16:38 +0800)
committer
Jaegeuk Kim
<jaegeuk@kernel.org>
Wed, 3 Jan 2018 03:27:30 +0000
(19:27 -0800)
Since the variable release is only nonzero when another unlikely
case occurs, use unlikely() on it seems logical.
Signed-off-by: Fan li <fanofcode.li@samsung.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/f2fs.h
patch
|
blob
|
blame
|
history
diff --git
a/fs/f2fs/f2fs.h
b/fs/f2fs/f2fs.h
index e9e72844220c6ea0b0d455211aad300679430fd3..930cf430dcc2cc9b4443ef926f29a613b6818fd0 100644
(file)
--- a/
fs/f2fs/f2fs.h
+++ b/
fs/f2fs/f2fs.h
@@
-1594,7
+1594,7
@@
static inline int inc_valid_block_count(struct f2fs_sb_info *sbi,
}
spin_unlock(&sbi->stat_lock);
- if (
release
)
+ if (
unlikely(release)
)
dquot_release_reservation_block(inode, release);
f2fs_i_blocks_write(inode, *count, true, true);
return 0;