Signed-off-by: Andreas Gruenbacher <agrue...@redhat.com>
---
 fs/iomap.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/fs/iomap.c b/fs/iomap.c
index 4f10c6b..d393bb0 100644
--- a/fs/iomap.c
+++ b/fs/iomap.c
@@ -155,6 +155,12 @@ struct iomap_readpage_ctx {
        bool is_contig = false;
        sector_t sector;
 
+       if (iomap->type == IOMAP_INLINE) {
+               iomap_read_inline_data(inode, page, iomap);
+               plen = PAGE_SIZE - poff;
+               goto done;
+       }
+
        /* we don't support blocksize < PAGE_SIZE quite yet. */
        WARN_ON_ONCE(pos != page_offset(page));
        WARN_ON_ONCE(plen != PAGE_SIZE);
-- 
1.8.3.1

Reply via email to