diff options
author | David Sterba <dsterba@suse.com> | 2019-08-21 19:48:25 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-09-09 15:59:15 +0300 |
commit | 602cbe91fb012a923a9fea880e600e004eb1543b (patch) | |
tree | 726a8c9f2373aa9136c7f3d7c6f404534f1a168d /fs/btrfs/ordered-data.c | |
parent | d2979aa25fc8de6498d906ae6b46b028457d6400 (diff) | |
download | linux-602cbe91fb012a923a9fea880e600e004eb1543b.tar.xz |
btrfs: move cond_wake_up functions out of ctree
The file ctree.h serves as a header for everything and has become quite
bloated. Split some helpers that are generic and create a new file that
should be the catch-all for code that's not btrfs-specific.
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ordered-data.c')
-rw-r--r-- | fs/btrfs/ordered-data.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/ordered-data.c b/fs/btrfs/ordered-data.c index ae7f64a8facb..24b6c72b9a59 100644 --- a/fs/btrfs/ordered-data.c +++ b/fs/btrfs/ordered-data.c @@ -7,6 +7,7 @@ #include <linux/blkdev.h> #include <linux/writeback.h> #include <linux/sched/mm.h> +#include "misc.h" #include "ctree.h" #include "transaction.h" #include "btrfs_inode.h" |