Displaying 2 results from an estimated 2 matches for "7ec1409".
Did you mean:
7ec14000
2010 Jul 26
2
[PATCH] btrfs: set task state with schedule_timeout_uninterruptible()
...cycle without checking of
pending signals, use schedule_timeout_uninterruptible().
Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
---
fs/btrfs/async-thread.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/btrfs/async-thread.c b/fs/btrfs/async-thread.c
index 7ec1409..54eb070 100644
--- a/fs/btrfs/async-thread.c
+++ b/fs/btrfs/async-thread.c
@@ -362,7 +362,7 @@ again:
* worker->working is still 1, so nobody
* is going to try and wake us up
*/
- schedule_timeout(1);
+ schedule_timeout_uninterruptible(1);
smp_mb();
if (!list_e...
2011 Aug 26
0
[PATCH] Btrfs: make some functions return void
...| 4 +-
fs/btrfs/tree-log.c | 21 ++++++----------
fs/btrfs/tree-log.h | 8 +++---
fs/btrfs/volumes.c | 11 +++-----
fs/btrfs/volumes.h | 2 +-
20 files changed, 118 insertions(+), 176 deletions(-)
diff --git a/fs/btrfs/async-thread.c b/fs/btrfs/async-thread.c
index 7ec1409..5e9998a 100644
--- a/fs/btrfs/async-thread.c
+++ b/fs/btrfs/async-thread.c
@@ -177,11 +177,11 @@ out:
spin_unlock_irqrestore(&workers->lock, flags);
}
-static noinline int run_ordered_completions(struct btrfs_workers *workers,
- struct btrfs_work *work)
+static noinline void ru...