Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7928d672 authored by David Sterba's avatar David Sterba
Browse files

btrfs: cleanup, remove stray return statements



Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 352dd9c8
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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)
+0 −1
Original line number Diff line number Diff line
@@ -5304,7 +5304,6 @@ void btrfs_evict_inode(struct inode *inode)
no_delete:
	btrfs_remove_delayed_node(inode);
	clear_inode(inode);
	return;
}

/*
+0 −2
Original line number Diff line number Diff line
@@ -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;
}

/*
@@ -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;
}

/*
+0 −2
Original line number Diff line number Diff line
@@ -503,7 +503,6 @@ static void cache_rbio(struct btrfs_raid_bio *rbio)
	}

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

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

	rbio_orig_end_io(rbio, err);
	return;
}

/*
+0 −2
Original line number Diff line number Diff line
@@ -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[],
Loading