Btrfs: wake up the tasks that wait for the io earlier
authorMiao Xie <miaox@cn.fujitsu.com>
Thu, 6 Mar 2014 05:54:56 +0000 (13:54 +0800)
committerJosef Bacik <jbacik@fb.com>
Mon, 10 Mar 2014 19:17:23 +0000 (15:17 -0400)
The tasks that wait for the IO_DONE flag just care about the io of the dirty
pages, so it is better to wake up them immediately after all the pages are
written, not the whole process of the io completes.

Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fb.com>
fs/btrfs/ordered-data.c

index 73de19c..a75eaa2 100644 (file)
@@ -349,10 +349,13 @@ int btrfs_dec_test_first_ordered_pending(struct inode *inode,
        if (!uptodate)
                set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
 
-       if (entry->bytes_left == 0)
+       if (entry->bytes_left == 0) {
                ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
-       else
+               if (waitqueue_active(&entry->wait))
+                       wake_up(&entry->wait);
+       } else {
                ret = 1;
+       }
 out:
        if (!ret && cached && entry) {
                *cached = entry;
@@ -410,10 +413,13 @@ have_entry:
        if (!uptodate)
                set_bit(BTRFS_ORDERED_IOERR, &entry->flags);
 
-       if (entry->bytes_left == 0)
+       if (entry->bytes_left == 0) {
                ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags);
-       else
+               if (waitqueue_active(&entry->wait))
+                       wake_up(&entry->wait);
+       } else {
                ret = 1;
+       }
 out:
        if (!ret && cached && entry) {
                *cached = entry;