Home
last modified time | relevance | path

Searched refs:submit_off (Results 1 – 3 of 3) sorted by relevance

/linux/fs/netfs/
H A Dwrite_issue.c455 stream->submit_off = foff; in netfs_write_folio()
461 stream->submit_off = UINT_MAX; in netfs_write_folio()
480 stream->submit_off < lowest_off) { in netfs_write_folio()
481 lowest_off = stream->submit_off; in netfs_write_folio()
491 if (stream->submit_off > iter_off) { in netfs_write_folio()
492 rolling_buffer_advance(&wreq->buffer, stream->submit_off - iter_off); in netfs_write_folio()
493 iter_off = stream->submit_off; in netfs_write_folio()
496 atomic64_set(&wreq->issued_to, fpos + stream->submit_off); in netfs_write_folio()
497 stream->submit_extendable_to = fsize - stream->submit_off; in netfs_write_folio()
498 part = netfs_advance_write(wreq, stream, fpos + stream->submit_off, in netfs_write_folio()
[all …]
H A Dread_pgpriv2.c62 cache->submit_off = 0; in netfs_pgpriv2_copy_folio()
73 creq->buffer.iter.iov_offset = cache->submit_off; in netfs_pgpriv2_copy_folio()
75 atomic64_set(&creq->issued_to, fpos + cache->submit_off); in netfs_pgpriv2_copy_folio()
76 cache->submit_extendable_to = fsize - cache->submit_off; in netfs_pgpriv2_copy_folio()
77 part = netfs_advance_write(creq, cache, fpos + cache->submit_off, in netfs_pgpriv2_copy_folio()
79 cache->submit_off += part; in netfs_pgpriv2_copy_folio()
/linux/include/linux/
H A Dnetfs.h139 unsigned int submit_off; /* Folio offset we're submitting from */ member