Lines Matching full:apt
1903 struct aio_poll_table apt; in aio_poll() local
1922 apt.pt._qproc = aio_poll_queue_proc; in aio_poll()
1923 apt.pt._key = req->events; in aio_poll()
1924 apt.iocb = aiocb; in aio_poll()
1925 apt.queued = false; in aio_poll()
1926 apt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */ in aio_poll()
1932 mask = vfs_poll(req->file, &apt.pt) & req->events; in aio_poll()
1934 if (likely(apt.queued)) { in aio_poll()
1942 if (apt.error) /* unsupported case: multiple queues */ in aio_poll()
1944 apt.error = 0; in aio_poll()
1947 if (mask || apt.error) { in aio_poll()
1966 apt.error = 0; in aio_poll()
1971 return apt.error; in aio_poll()