Skip to content

Commit

Permalink
Btrfs: only map pages if we know we need them when reading the space …
Browse files Browse the repository at this point in the history
…cache

People have been running into a warning when loading space cache because the
page is already mapped when trying to read in a bitmap.  The way we read in
entries and pages is kind of convoluted, so fix it so that io_ctl_read_entry
maps the entries if it needs to, and if it hits the end of the page it simply
unmaps the page.  That way we can unconditionally unmap the io_ctl before
reading in the bitmap and we should stop hitting these warnings.  Thanks,

Signed-off-by: Josef Bacik <josef@redhat.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Josef Bacik authored and chrismason-xx committed Nov 11, 2011
1 parent 76b9e23 commit 2f120c0
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions fs/btrfs/free-space-cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,13 @@ static int io_ctl_read_entry(struct io_ctl *io_ctl,
struct btrfs_free_space *entry, u8 *type)
{
struct btrfs_free_space_entry *e;
int ret;

if (!io_ctl->cur) {
ret = io_ctl_check_crc(io_ctl, io_ctl->index);
if (ret)
return ret;
}

e = io_ctl->cur;
entry->offset = le64_to_cpu(e->offset);
Expand All @@ -550,20 +557,14 @@ static int io_ctl_read_entry(struct io_ctl *io_ctl,

io_ctl_unmap_page(io_ctl);

if (io_ctl->index >= io_ctl->num_pages)
return 0;

return io_ctl_check_crc(io_ctl, io_ctl->index);
return 0;
}

static int io_ctl_read_bitmap(struct io_ctl *io_ctl,
struct btrfs_free_space *entry)
{
int ret;

if (io_ctl->cur && io_ctl->cur != io_ctl->orig)
io_ctl_unmap_page(io_ctl);

ret = io_ctl_check_crc(io_ctl, io_ctl->index);
if (ret)
return ret;
Expand Down Expand Up @@ -699,6 +700,8 @@ int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
num_entries--;
}

io_ctl_unmap_page(&io_ctl);

/*
* We add the bitmaps at the end of the entries in order that
* the bitmap entries are added to the cache.
Expand Down

0 comments on commit 2f120c0

Please sign in to comment.