fs: befs: remove unnecessary *befs_sb variable
authorSalah Triki <salah.triki@gmail.com>
Sun, 31 Jul 2016 20:34:29 +0000 (21:34 +0100)
committerLuis de Bethencourt <luisbg@osg.samsung.com>
Tue, 9 Aug 2016 14:18:06 +0000 (15:18 +0100)
Remove *befs_sb and just call BEFS_SB(sb) directly, since the returned
value by this function is only used once.

Signed-off-by: Salah Triki <salah.triki@gmail.com>
Acked-by: Luis de Bethencourt <luisbg@osg.samsung.com>
fs/befs/datastream.c

index d7c4bb07e1e494075eb95e5930f14468364ce52a..6889644e65f8a28bb3ae41f3f1d4990292ad8756 100644 (file)
@@ -425,10 +425,9 @@ befs_find_brun_dblindirect(struct super_block *sb,
        struct buffer_head *indir_block;
        befs_block_run indir_run;
        befs_disk_inode_addr *iaddr_array;
-       struct befs_sb_info *befs_sb = BEFS_SB(sb);
 
        befs_blocknr_t indir_start_blk =
-           data->max_indirect_range >> befs_sb->block_shift;
+           data->max_indirect_range >> BEFS_SB(sb)->block_shift;
 
        off_t dbl_indir_off = blockno - indir_start_blk;
 
This page took 0.030384 seconds and 5 git commands to generate.