From 94b947b2f3f84f3bba25d34c4e2a229fc2276830 Mon Sep 17 00:00:00 2001 From: Zhao Lei Date: Sat, 14 Feb 2015 13:23:45 +0800 Subject: [PATCH] btrfs: fix condition of commit transaction Old code bypass commit transaction when we don't have enough pinned space, but another case is there exist freed bgs in current transction, it have possibility to make alloc_chunk success. This patch modify the condition to: if (have_free_bg || have_pinned_space) commit_transaction() Confirmed above action by printk before and after patch. Signed-off-by: Zhao Lei Signed-off-by: Chris Mason --- Reading git-format-patch failed