diff options
author | Chris Mason <chris.mason@fusionio.com> | 2012-07-23 15:23:45 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2012-07-23 15:36:17 -0400 |
commit | e39e64ac0cdeca3798a6bf186f873be20e2f57b4 (patch) | |
tree | f0f7468b17124e92d120b3696b9a5896cdc3cb04 /fs/btrfs/transaction.c | |
parent | 28a33cbc24e4256c143dce96c7d93bf423229f92 (diff) |
Btrfs: don't wait around for new log writers on an SSD
Waiting on spindles improves performance, but ssds want all the
IO as quickly as we can push it down.
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/transaction.c')
-rw-r--r-- | fs/btrfs/transaction.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index b72b068183ec..8c35847d0fee 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c | |||
@@ -1330,7 +1330,8 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans, | |||
1330 | spin_unlock(&root->fs_info->trans_lock); | 1330 | spin_unlock(&root->fs_info->trans_lock); |
1331 | } | 1331 | } |
1332 | 1332 | ||
1333 | if (now < cur_trans->start_time || now - cur_trans->start_time < 1) | 1333 | if (!btrfs_test_opt(root, SSD) && |
1334 | (now < cur_trans->start_time || now - cur_trans->start_time < 1)) | ||
1334 | should_grow = 1; | 1335 | should_grow = 1; |
1335 | 1336 | ||
1336 | do { | 1337 | do { |