diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2013-08-20 07:20:08 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2013-09-01 08:16:09 -0400 |
commit | 6e71c47afee8178c0620323009b23813bfde7eac (patch) | |
tree | 82421649e5f3482625ab7a45d993442124436c33 /fs/btrfs/dev-replace.c | |
parent | c1c9ff7c94e83fae89a742df74db51156869bad5 (diff) |
Btrfs: Make BTRFS_DEV_REPLACE_DEVID an unsigned long long constant
The internal btrfs device id is a u64, hence make the constant
BTRFS_DEV_REPLACE_DEVID "unsigned long long" as well, so we no longer need
a cast to print it.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/dev-replace.c')
-rw-r--r-- | fs/btrfs/dev-replace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c index e34e72f3e1aa..af800ef677a0 100644 --- a/fs/btrfs/dev-replace.c +++ b/fs/btrfs/dev-replace.c | |||
@@ -154,7 +154,7 @@ no_valid_dev_replace_entry_found: | |||
154 | !btrfs_test_opt(dev_root, DEGRADED)) { | 154 | !btrfs_test_opt(dev_root, DEGRADED)) { |
155 | ret = -EIO; | 155 | ret = -EIO; |
156 | pr_warn("btrfs: cannot mount because device replace operation is ongoing and\n" "tgtdev (devid %llu) is missing, need to run btrfs dev scan?\n", | 156 | pr_warn("btrfs: cannot mount because device replace operation is ongoing and\n" "tgtdev (devid %llu) is missing, need to run btrfs dev scan?\n", |
157 | (unsigned long long)BTRFS_DEV_REPLACE_DEVID); | 157 | BTRFS_DEV_REPLACE_DEVID); |
158 | } | 158 | } |
159 | if (dev_replace->tgtdev) { | 159 | if (dev_replace->tgtdev) { |
160 | if (dev_replace->srcdev) { | 160 | if (dev_replace->srcdev) { |