Skip to content

Commit

Permalink
ext4: use unlikely to improve the efficiency of the kernel
Browse files Browse the repository at this point in the history
Because the function 'sb_getblk' seldomly fails to return NULL
value,it will be better to use 'unlikely' to optimize it.

Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
  • Loading branch information
Wang Shilong authored and Theodore Ts'o committed Jan 12, 2013
1 parent 860d21e commit aebf024
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions fs/ext4/extents.c
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ static int ext4_ext_split(handle_t *handle, struct inode *inode,
goto cleanup;
}
bh = sb_getblk(inode->i_sb, newblock);
if (!bh) {
if (unlikely(!bh)) {
err = -ENOMEM;
goto cleanup;
}
Expand Down Expand Up @@ -1029,7 +1029,7 @@ static int ext4_ext_split(handle_t *handle, struct inode *inode,
oldblock = newblock;
newblock = ablocks[--a];
bh = sb_getblk(inode->i_sb, newblock);
if (!bh) {
if (unlikely(!bh)) {
err = -ENOMEM;
goto cleanup;
}
Expand Down Expand Up @@ -1142,7 +1142,7 @@ static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
return err;

bh = sb_getblk(inode->i_sb, newblock);
if (!bh)
if (unlikely(!bh))
return -ENOMEM;
lock_buffer(bh);

Expand Down
6 changes: 3 additions & 3 deletions fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
return NULL;

bh = sb_getblk(inode->i_sb, map.m_pblk);
if (!bh) {
if (unlikely(!bh)) {
*errp = -ENOMEM;
return NULL;
}
Expand Down Expand Up @@ -3660,7 +3660,7 @@ static int __ext4_get_inode_loc(struct inode *inode,
iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);

bh = sb_getblk(sb, block);
if (!bh)
if (unlikely(!bh))
return -ENOMEM;
if (!buffer_uptodate(bh)) {
lock_buffer(bh);
Expand Down Expand Up @@ -3693,7 +3693,7 @@ static int __ext4_get_inode_loc(struct inode *inode,

/* Is the inode bitmap in cache? */
bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
if (!bitmap_bh)
if (unlikely(!bitmap_bh))
goto make_io;

/*
Expand Down
2 changes: 1 addition & 1 deletion fs/ext4/mmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static int read_mmp_block(struct super_block *sb, struct buffer_head **bh,
*bh = NULL;
}
}
if (!*bh) {
if (unlikely(!*bh)) {
ext4_warning(sb, "Error while reading MMP block %llu",
mmp_block);
return -EIO;
Expand Down
10 changes: 5 additions & 5 deletions fs/ext4/resize.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ static struct buffer_head *bclean(handle_t *handle, struct super_block *sb,
int err;

bh = sb_getblk(sb, blk);
if (!bh)
if (unlikely(!bh))
return ERR_PTR(-ENOMEM);
if ((err = ext4_journal_get_write_access(handle, bh))) {
brelse(bh);
Expand Down Expand Up @@ -410,7 +410,7 @@ static int set_flexbg_block_bitmap(struct super_block *sb, handle_t *handle,
return err;

bh = sb_getblk(sb, flex_gd->groups[group].block_bitmap);
if (!bh)
if (unlikely(!bh))
return -ENOMEM;

err = ext4_journal_get_write_access(handle, bh);
Expand Down Expand Up @@ -500,7 +500,7 @@ static int setup_new_flex_group_blocks(struct super_block *sb,
goto out;

gdb = sb_getblk(sb, block);
if (!gdb) {
if (unlikely(!gdb)) {
err = -ENOMEM;
goto out;
}
Expand Down Expand Up @@ -1064,7 +1064,7 @@ static void update_backups(struct super_block *sb, int blk_off, char *data,
ext4_bg_has_super(sb, group));

bh = sb_getblk(sb, backup_block);
if (!bh) {
if (unlikely(!bh)) {
err = -ENOMEM;
break;
}
Expand Down Expand Up @@ -1168,7 +1168,7 @@ static int ext4_add_new_descs(handle_t *handle, struct super_block *sb,
static struct buffer_head *ext4_get_bitmap(struct super_block *sb, __u64 block)
{
struct buffer_head *bh = sb_getblk(sb, block);
if (!bh)
if (unlikely(!bh))
return NULL;
if (!bh_uptodate_or_lock(bh)) {
if (bh_submit_read(bh) < 0) {
Expand Down
2 changes: 1 addition & 1 deletion fs/ext4/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ ext4_xattr_block_set(handle_t *handle, struct inode *inode,
(unsigned long long)block);

new_bh = sb_getblk(sb, block);
if (!new_bh) {
if (unlikely(!new_bh)) {
error = -ENOMEM;
getblk_failed:
ext4_free_blocks(handle, inode, NULL, block, 1,
Expand Down

0 comments on commit aebf024

Please sign in to comment.