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-Tag: v3.14.10~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ed3912c6855efe2f68b90d76e0c91a9c525ab71;p=platform%2Fkernel%2Flinux-stable.git Btrfs: fix double free in find_lock_delalloc_range commit 7d78874273463a784759916fc3e0b4e2eb141c70 upstream. 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index 85bbd01..a5a4815 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c @@ -1686,6 +1686,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;