diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-11-03 01:10:07 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-11-03 01:10:07 -0500 |
| commit | 7a53c7f56bbfc9b0ef892e68f5cfae3d902544d1 (patch) | |
| tree | 19dec256fc80ad06d631ece78b9eb68a457ce66b /fs/btrfs/compression.c | |
| parent | e57130698fe3dd2b7d617d90bbf86474473cb40c (diff) | |
| parent | 012abeea669ea49636cf952d13298bb68654146a (diff) | |
Merge commit 'v2.6.32-rc5' into for-linus
Diffstat (limited to 'fs/btrfs/compression.c')
| -rw-r--r-- | fs/btrfs/compression.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index 9d8ba4d54a37..a11a32058b50 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c | |||
| @@ -506,10 +506,10 @@ static noinline int add_ra_bio_pages(struct inode *inode, | |||
| 506 | */ | 506 | */ |
| 507 | set_page_extent_mapped(page); | 507 | set_page_extent_mapped(page); |
| 508 | lock_extent(tree, last_offset, end, GFP_NOFS); | 508 | lock_extent(tree, last_offset, end, GFP_NOFS); |
| 509 | spin_lock(&em_tree->lock); | 509 | read_lock(&em_tree->lock); |
| 510 | em = lookup_extent_mapping(em_tree, last_offset, | 510 | em = lookup_extent_mapping(em_tree, last_offset, |
| 511 | PAGE_CACHE_SIZE); | 511 | PAGE_CACHE_SIZE); |
| 512 | spin_unlock(&em_tree->lock); | 512 | read_unlock(&em_tree->lock); |
| 513 | 513 | ||
| 514 | if (!em || last_offset < em->start || | 514 | if (!em || last_offset < em->start || |
| 515 | (last_offset + PAGE_CACHE_SIZE > extent_map_end(em)) || | 515 | (last_offset + PAGE_CACHE_SIZE > extent_map_end(em)) || |
| @@ -593,11 +593,11 @@ int btrfs_submit_compressed_read(struct inode *inode, struct bio *bio, | |||
| 593 | em_tree = &BTRFS_I(inode)->extent_tree; | 593 | em_tree = &BTRFS_I(inode)->extent_tree; |
| 594 | 594 | ||
| 595 | /* we need the actual starting offset of this extent in the file */ | 595 | /* we need the actual starting offset of this extent in the file */ |
| 596 | spin_lock(&em_tree->lock); | 596 | read_lock(&em_tree->lock); |
| 597 | em = lookup_extent_mapping(em_tree, | 597 | em = lookup_extent_mapping(em_tree, |
| 598 | page_offset(bio->bi_io_vec->bv_page), | 598 | page_offset(bio->bi_io_vec->bv_page), |
| 599 | PAGE_CACHE_SIZE); | 599 | PAGE_CACHE_SIZE); |
| 600 | spin_unlock(&em_tree->lock); | 600 | read_unlock(&em_tree->lock); |
| 601 | 601 | ||
| 602 | compressed_len = em->block_len; | 602 | compressed_len = em->block_len; |
| 603 | cb = kmalloc(compressed_bio_size(root, compressed_len), GFP_NOFS); | 603 | cb = kmalloc(compressed_bio_size(root, compressed_len), GFP_NOFS); |
