Lines Matching refs:apt
1864 struct aio_poll_table apt; in aio_poll() local
1883 apt.pt._qproc = aio_poll_queue_proc; in aio_poll()
1884 apt.pt._key = req->events; in aio_poll()
1885 apt.iocb = aiocb; in aio_poll()
1886 apt.queued = false; in aio_poll()
1887 apt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */ in aio_poll()
1893 mask = vfs_poll(req->file, &apt.pt) & req->events; in aio_poll()
1895 if (likely(apt.queued)) { in aio_poll()
1903 if (apt.error) /* unsupported case: multiple queues */ in aio_poll()
1905 apt.error = 0; in aio_poll()
1908 if (mask || apt.error) { in aio_poll()
1927 apt.error = 0; in aio_poll()
1932 return apt.error; in aio_poll()