Lines Matching refs:apt
1868 struct aio_poll_table apt; in aio_poll() local
1887 apt.pt._qproc = aio_poll_queue_proc; in aio_poll()
1888 apt.pt._key = req->events; in aio_poll()
1889 apt.iocb = aiocb; in aio_poll()
1890 apt.queued = false; in aio_poll()
1891 apt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */ in aio_poll()
1897 mask = vfs_poll(req->file, &apt.pt) & req->events; in aio_poll()
1899 if (likely(apt.queued)) { in aio_poll()
1907 if (apt.error) /* unsupported case: multiple queues */ in aio_poll()
1909 apt.error = 0; in aio_poll()
1912 if (mask || apt.error) { in aio_poll()
1931 apt.error = 0; in aio_poll()
1936 return apt.error; in aio_poll()