From: Chris Mason Date: Wed, 21 May 2014 12:49:54 +0000 (-0700) Subject: Btrfs: fix double free in find_lock_delalloc_range X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7d78874273463a784759916fc3e0b4e2eb141c70;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git Btrfs: fix double free in find_lock_delalloc_range We need to NULL the cached_state after freeing it, otherwise we might free it again if find_delalloc_range doesn't find anything. Signed-off-by: Chris Mason cc: stable@vger.kernel.org --- diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index 8285ed0464fa..0f425dea4523 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c @@ -1693,6 +1693,7 @@ again: * shortening the size of the delalloc range we're searching */ free_extent_state(cached_state); + cached_state = NULL; if (!loops) { max_bytes = PAGE_CACHE_SIZE; loops = 1;