diff options
author | David Sterba <dsterba@suse.com> | 2019-08-21 19:54:28 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-09-09 15:59:15 +0300 |
commit | 784352fe0bb4814bd969fb390c3d03486a5aaafa (patch) | |
tree | 50ef76b70d0aa12b35a214f1fa2dd1cc92996c0b /fs/btrfs/volumes.c | |
parent | 602cbe91fb012a923a9fea880e600e004eb1543b (diff) | |
download | linux-784352fe0bb4814bd969fb390c3d03486a5aaafa.tar.xz |
btrfs: move math functions to misc.h
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r-- | fs/btrfs/volumes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 8bfc41f1b3b6..02976c174f32 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -14,6 +14,7 @@ #include <linux/semaphore.h> #include <linux/uuid.h> #include <linux/list_sort.h> +#include "misc.h" #include "ctree.h" #include "extent_map.h" #include "disk-io.h" @@ -24,7 +25,6 @@ #include "async-thread.h" #include "check-integrity.h" #include "rcu-string.h" -#include "math.h" #include "dev-replace.h" #include "sysfs.h" #include "tree-checker.h" |