Skip to content

Commit

Permalink
btrfs: cleanup, remove stray return statements
Browse files Browse the repository at this point in the history
Signed-off-by: David Sterba <dsterba@suse.com>
  • Loading branch information
David Sterba committed Jan 7, 2016
1 parent 352dd9c commit 7928d67
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion fs/btrfs/disk-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -3962,7 +3962,6 @@ static void __btrfs_btree_balance_dirty(struct btrfs_root *root,
balance_dirty_pages_ratelimited(
root->fs_info->btree_inode->i_mapping);
}
return;
}

void btrfs_btree_balance_dirty(struct btrfs_root *root)
Expand Down
1 change: 0 additions & 1 deletion fs/btrfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -5304,7 +5304,6 @@ void btrfs_evict_inode(struct inode *inode)
no_delete:
btrfs_remove_delayed_node(inode);
clear_inode(inode);
return;
}

/*
Expand Down
2 changes: 0 additions & 2 deletions fs/btrfs/locking.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ void btrfs_set_lock_blocking_rw(struct extent_buffer *eb, int rw)
atomic_dec(&eb->spinning_readers);
read_unlock(&eb->lock);
}
return;
}

/*
Expand Down Expand Up @@ -96,7 +95,6 @@ void btrfs_clear_lock_blocking_rw(struct extent_buffer *eb, int rw)
waitqueue_active(&eb->read_lock_wq))
wake_up(&eb->read_lock_wq);
}
return;
}

/*
Expand Down
2 changes: 0 additions & 2 deletions fs/btrfs/raid56.c
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,6 @@ static void cache_rbio(struct btrfs_raid_bio *rbio)
}

spin_unlock_irqrestore(&table->cache_lock, flags);
return;
}

/*
Expand Down Expand Up @@ -906,7 +905,6 @@ static void raid_write_end_io(struct bio *bio)
err = -EIO;

rbio_orig_end_io(rbio, err);
return;
}

/*
Expand Down
2 changes: 0 additions & 2 deletions fs/btrfs/scrub.c
Original file line number Diff line number Diff line change
Expand Up @@ -1514,8 +1514,6 @@ static void scrub_recheck_block(struct btrfs_fs_info *fs_info,

if (sblock->no_io_error_seen)
scrub_recheck_block_checksum(sblock);

return;
}

static inline int scrub_check_fsid(u8 fsid[],
Expand Down
1 change: 0 additions & 1 deletion fs/btrfs/volumes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1642,7 +1642,6 @@ static void update_dev_time(char *path_name)
return;
file_update_time(filp);
filp_close(filp, NULL);
return;
}

static int btrfs_rm_dev_item(struct btrfs_root *root,
Expand Down

0 comments on commit 7928d67

Please sign in to comment.