Lines Matching refs:error
69 * wait on ticket->wait for ->bytes to be reduced to 0, or ->error to be set
85 * on, if not return the appropriate error (ENOSPC, but can be EINTR if we
902 ticket->error = -ENOSPC;
1192 while (ticket->bytes > 0 && ticket->error == 0) {
1200 * despite getting an error, resulting in a space leak
1204 ticket->error = -EINTR;
1225 * the reservation, and returning the appropriate error if there is one.
1259 ret = ticket->error;
1260 if (ticket->bytes || ticket->error) {
1279 * Check that we can't have an error set if the reservation succeeded,
1280 * as that would confuse tasks and lead them to error out without
1281 * releasing reserved space (if an error happens the expectation is that
1284 ASSERT(!(ticket->bytes == 0 && ticket->error));
1366 ticket.error = 0;