Home
last modified time | relevance | path

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

/dragonfly/sys/kern/
H A Dkern_xio.c81 xio->xio_offset = 0; in xio_init()
107 xio->xio_offset = (vm_offset_t)kbase & PAGE_MASK; in xio_init_kbuf()
111 if ((n = PAGE_SIZE - xio->xio_offset) > kbytes) in xio_init_kbuf()
150 xio->xio_offset = 0; in xio_init_pages()
178 xio->xio_offset = 0; in xio_release()
238 offset = (xio->xio_offset + uoffset) & PAGE_MASK; in xio_copy_xtou()
243 for (i = (xio->xio_offset + uoffset) >> PAGE_SHIFT; in xio_copy_xtou()
287 offset = (xio->xio_offset + uoffset) & PAGE_MASK; in xio_copy_xtok()
292 for (i = (xio->xio_offset + uoffset) >> PAGE_SHIFT; in xio_copy_xtok()
334 offset = (xio->xio_offset + uoffset) & PAGE_MASK; in xio_copy_utox()
[all …]
H A Dvfs_journal.c1076 int xio_offset = 0; in jrecord_data() local
1096 xio_copy_xtok((xio_t)buf, xio_offset, jrec->stream_ptr, in jrecord_data()
1098 xio_offset += jrec->stream_residual; in jrecord_data()
1143 xio_copy_xtok((xio_t)buf, xio_offset, jrec->stream_ptr, bytes); in jrecord_data()
/dragonfly/sys/sys/
H A Dxio.h74 int xio_offset; /* byte offset (may exceed a page) */ member
123 return(xio->xio_offset + uoffset); in xio_kvaoffset()