HomeSort by: relevance | last modified time | path
    Searched defs:lio (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/fs/v7fs/
v7fs_io_user.c 109 struct local_io *lio = (struct local_io *)fs->io.cookie; local in function:v7fs_io_fini
111 if (lio->addr) {
112 if (munmap(lio->addr, lio->size) != 0)
115 fsync(lio->fd);
123 struct local_io *lio = (struct local_io *)ctx; local in function:read_sector
124 size_t blksz = lio->blksz;
125 int fd = lio->fd;
139 struct local_io *lio = (struct local_io *)ctx; local in function:write_sector
140 size_t blksz = lio->blksz
155 struct local_io *lio = (struct local_io *)ctx; local in function:read_mmap
166 struct local_io *lio = (struct local_io *)ctx; local in function:write_mmap
    [all...]
  /src/sys/sys/
aio.h 40 /* LIO opcodes */
45 /* LIO modes */
58 int aio_lio_opcode; /* LIO opcode */
99 struct lio_req *lio; member in struct:aio_job
102 /* LIO structure */
  /src/sys/kern/
sys_aio.c 272 struct lio_req *lio; local in function:aio_worker
324 /* Decrease a reference counter, if there is a LIO structure */
325 lio = a_job->lio;
326 refcnt = (lio != NULL ? --lio->refcnt : -1);
335 /* Destroy the LIO structure */
337 aio_sendsig(p, &lio->sig);
338 pool_put(&aio_lio_pool, lio);
480 aio_enqueue_job(int op, void *aiocb_uptr, struct lio_req *lio)
619 struct lio_req *lio; local in function:sys_aio_cancel
935 struct lio_req *lio; local in function:sys_lio_listio
    [all...]

Completed in 15 milliseconds