Lines Matching refs:status
26 * to track sub-page uptodate status and I/O completions.
102 * per-block uptodate status and adjust the offset and length if needed
580 int status = iomap_read_page_sync(block_start, page,
582 if (status)
583 return status;
597 int status = 0;
607 status = page_ops->page_prepare(inode, pos, len, iomap);
608 if (status)
609 return status;
615 status = -ENOMEM;
622 status = __block_write_begin_int(page, pos, len, NULL, srcmap);
624 status = __iomap_write_begin(inode, pos, len, flags, page,
627 if (unlikely(status))
641 return status;
754 long status = 0;
781 status = -EFAULT;
785 status = iomap_write_begin(inode, pos, bytes, 0, &page, iomap,
787 if (unlikely(status))
821 return written ? written : status;
848 long status = 0;
863 status = iomap_write_begin(inode, pos, bytes,
865 if (unlikely(status))
866 return status;
868 status = iomap_write_end(inode, pos, bytes, bytes, page, iomap,
870 if (WARN_ON_ONCE(status == 0))
875 pos += status;
876 written += status;
877 length -= status;
908 int status;
912 status = iomap_write_begin(inode, pos, bytes, 0, &page, iomap, srcmap);
913 if (status)
914 return status;