diff options
author | Chris Mason <chris.mason@oracle.com> | 2012-01-16 15:27:58 -0500 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2012-01-16 15:27:58 -0500 |
commit | c126dea771be1b3c370c0ffc4a09e6a82d492a49 (patch) | |
tree | 99fc723ba2e89d767e260244cf8d19467bc68c8b /fs/btrfs/scrub.c | |
parent | 9785dbdf265ddc47d5c88267d89a97648c0dc14b (diff) | |
parent | 21adbd5cbb5344a3fca6bb7ddb2ab6cb03c44546 (diff) |
Merge branch 'integrity-check-patch-v2' of git://btrfs.giantdisaster.de/git/btrfs into integration
Conflicts:
fs/btrfs/ctree.h
fs/btrfs/super.c
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/scrub.c')
-rw-r--r-- | fs/btrfs/scrub.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c index 6a6a51a809ba..9770cc5bfb76 100644 --- a/fs/btrfs/scrub.c +++ b/fs/btrfs/scrub.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include "transaction.h" | 25 | #include "transaction.h" |
26 | #include "backref.h" | 26 | #include "backref.h" |
27 | #include "extent_io.h" | 27 | #include "extent_io.h" |
28 | #include "check-integrity.h" | ||
28 | 29 | ||
29 | /* | 30 | /* |
30 | * This is only the first step towards a full-features scrub. It reads all | 31 | * This is only the first step towards a full-features scrub. It reads all |
@@ -733,7 +734,7 @@ static int scrub_fixup_io(int rw, struct block_device *bdev, sector_t sector, | |||
733 | bio_add_page(bio, page, PAGE_SIZE, 0); | 734 | bio_add_page(bio, page, PAGE_SIZE, 0); |
734 | bio->bi_end_io = scrub_fixup_end_io; | 735 | bio->bi_end_io = scrub_fixup_end_io; |
735 | bio->bi_private = &complete; | 736 | bio->bi_private = &complete; |
736 | submit_bio(rw, bio); | 737 | btrfsic_submit_bio(rw, bio); |
737 | 738 | ||
738 | /* this will also unplug the queue */ | 739 | /* this will also unplug the queue */ |
739 | wait_for_completion(&complete); | 740 | wait_for_completion(&complete); |
@@ -959,7 +960,7 @@ static int scrub_submit(struct scrub_dev *sdev) | |||
959 | sdev->curr = -1; | 960 | sdev->curr = -1; |
960 | atomic_inc(&sdev->in_flight); | 961 | atomic_inc(&sdev->in_flight); |
961 | 962 | ||
962 | submit_bio(READ, sbio->bio); | 963 | btrfsic_submit_bio(READ, sbio->bio); |
963 | 964 | ||
964 | return 0; | 965 | return 0; |
965 | } | 966 | } |