Skip to content

Commit

Permalink
fs: befs: remove unnecessary *befs_sb variable
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Luis de Bethencourt <[email protected]>
  • Loading branch information
salah-triki authored and luisbg committed Oct 8, 2016
1 parent 143d2a6 commit f306610
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fs/befs/datastream.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f306610

Please sign in to comment.