ocfs2: Wrap virtual block reads in ocfs2_read_virt_blocks()
authorJoel Becker <joel.becker@oracle.com>
Thu, 13 Nov 2008 22:49:20 +0000 (14:49 -0800)
committerMark Fasheh <mfasheh@suse.com>
Mon, 5 Jan 2009 16:36:54 +0000 (08:36 -0800)
commita8549fb5abb2b372e46d5de0d23ff8b24f4a61af
treeb35c565519fec6827b4bd76938dcfd39e762caf4
parent970e4936d7d15f35d00fd15a14f5343ba78b2fc8
ocfs2: Wrap virtual block reads in ocfs2_read_virt_blocks()

The ocfs2_read_dir_block() function really maps an inode's virtual
blocks to physical ones before calling ocfs2_read_blocks().  Let's
extract that to common code, because other places might want to do that.

Other than the block number being virtual, ocfs2_read_virt_blocks()
takes the same arguments as ocfs2_read_blocks().  It converts those
virtual block numbers to physical before calling ocfs2_read_blocks()
directly.  If the blocks asked for are discontiguous, this can mean
multiple calls to ocfs2_read_blocks(), but this is mostly hidden from
the caller.

Like ocfs2_read_blocks(), the caller can pass in an existing
buffer_head.  This is usually done to pick up some readahead I/O.
ocfs2_read_virt_blocks() checks the buffer_head's block number
against the extent map - it must match.

Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
fs/ocfs2/extent_map.c
fs/ocfs2/extent_map.h