Lines Matching defs:incoming
115 * @incoming: indicates whether this transaction represents an incoming
119 bool incoming;
209 __relay_get_transaction(struct xe_guc_relay *relay, bool incoming, u32 remote, u32 rid,
224 * For incoming requests we can't use GFP_KERNEL as those are delivered
228 txn = mempool_alloc(&relay->pool, incoming ? GFP_ATOMIC : GFP_NOWAIT);
232 txn->incoming = incoming;
236 prepare_pf2guc(incoming ? txn->response_buf : txn->request_buf, remote, rid) :
237 prepare_vf2guc(incoming ? txn->response_buf : txn->request_buf, rid);
284 u32 len = txn->incoming ? txn->response_len : txn->request_len;
285 u32 *buf = txn->incoming ? txn->response_buf : txn->request_buf;