diff options
Diffstat (limited to 'fs/btrfs/relocation.c')
| -rw-r--r-- | fs/btrfs/relocation.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c index 8c1aae2c845..efe9f792544 100644 --- a/fs/btrfs/relocation.c +++ b/fs/btrfs/relocation.c @@ -2949,7 +2949,9 @@ static int relocate_file_extent_cluster(struct inode *inode,  	index = (cluster->start - offset) >> PAGE_CACHE_SHIFT;  	last_index = (cluster->end - offset) >> PAGE_CACHE_SHIFT;  	while (index <= last_index) { +		mutex_lock(&inode->i_mutex);  		ret = btrfs_delalloc_reserve_metadata(inode, PAGE_CACHE_SIZE); +		mutex_unlock(&inode->i_mutex);  		if (ret)  			goto out;  |