/kernel/linux/linux-6.6/include/linux/surface_aggregator/ |
H A D | serial_hub.h | 92 * @rqid: Request ID. Used to match requests with responses and differentiate 102 __le16 rqid; member 211 * @rqid: The current request ID. 217 static inline u16 ssh_rqid_next_valid(u16 rqid) in ssh_rqid_next_valid() argument 219 return rqid > 0 ? rqid + 1u : rqid + SSH_NUM_EVENTS + 1u; in ssh_rqid_next_valid() 224 * @rqid: The request ID to convert. 226 static inline u16 ssh_rqid_to_event(u16 rqid) in ssh_rqid_to_event() argument 228 return rqid in ssh_rqid_to_event() 235 ssh_rqid_is_event(u16 rqid) ssh_rqid_is_event() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/fungible/funcore/ |
H A D | fun_queue.c | 125 int fun_cq_create(struct fun_dev *fdev, u16 flags, u32 cqid, u32 rqid, in fun_cq_create() argument 145 cqid, rqid, cqe_size_log2, in fun_cq_create() 422 /* I/O Q: use rqid = cqid, sqid = +1 */ in fun_alloc_queue() 423 funq->rqid = funq->cqid; in fun_alloc_queue() 424 funq->sqid = funq->rqid + 1; in fun_alloc_queue() 428 funq->rqid = 1; in fun_alloc_queue() 489 unsigned int rqid; in fun_create_cq() local 492 rqid = funq->cq_flags & FUN_ADMIN_EPCQ_CREATE_FLAG_RQ ? in fun_create_cq() 493 funq->rqid : FUN_HCI_ID_INVALID; in fun_create_cq() 494 rc = fun_cq_create(fdev, funq->cq_flags, funq->cqid, rqid, in fun_create_cq() [all...] |
H A D | fun_queue.h | 43 u32 rqid; member 137 int fun_cq_create(struct fun_dev *fdev, u16 flags, u32 cqid, u32 rqid,
|
/kernel/linux/linux-6.6/drivers/platform/surface/aggregator/ |
H A D | trace.h | 151 return get_unaligned_le16(&p->data.ptr[SSH_MSGOFFSET_COMMAND(rqid)]); in ssam_trace_get_request_id() 263 #define ssam_show_request_id(rqid) \ 264 __print_symbolic(rqid, \ 357 __field(u16, rqid) 367 __entry->rqid = get_unaligned_le16(&cmd->rqid); 376 TP_printk("rqid=%#06x, tid=%s, sid=%s, tc=%s, cid=%#04x, iid=%#04x, len=%u", 377 __entry->rqid, 477 __field(u32, rqid) 491 __entry->rqid [all...] |
H A D | controller.c | 449 * @rqid: The request ID of the event. 464 static void ssam_nf_call(struct ssam_nf *nf, struct device *dev, u16 rqid, in ssam_nf_call() argument 470 if (!ssh_rqid_is_event(rqid)) { in ssam_nf_call() 471 dev_warn(dev, "event: unsupported rqid: %#06x\n", rqid); in ssam_nf_call() 475 nf_head = &nf->head[ssh_rqid_to_event(rqid)]; in ssam_nf_call() 486 "event: unhandled event (rqid: %#04x, tc: %#04x, tid: %#04x, cid: %#04x, iid: %#04x)\n", in ssam_nf_call() 487 rqid, event->target_category, event->target_id, in ssam_nf_call() 691 * @rqid: The request ID representing the event ID for which to get the queue. 700 u8 tid, u16 rqid) in ssam_cplt_get_event_queue() 699 ssam_cplt_get_event_queue(struct ssam_cplt *cplt, u8 tid, u16 rqid) ssam_cplt_get_event_queue() argument 1473 u16 rqid; ssam_request_write_data() local 1843 u16 rqid = ssh_tc_to_rqid(id.target_category); __ssam_ssh_event_request() local 2290 u16 rqid = ssh_tc_to_rqid(n->event.id.target_category); ssam_notifier_register() local 2359 u16 rqid = ssh_tc_to_rqid(n->event.id.target_category); __ssam_notifier_unregister() local 2432 u16 rqid = ssh_tc_to_rqid(id.target_category); ssam_controller_event_enable() local 2483 u16 rqid = ssh_tc_to_rqid(id.target_category); ssam_controller_event_disable() local [all...] |
H A D | controller.h | 82 * @rqid: The request ID of the event. 89 u16 rqid; member 192 * @counter.rqid: Request ID counter. 209 struct ssh_rqid_counter rqid; member
|
H A D | ssh_msgb.h | 169 * @rqid: The request ID (RQID) of the request contained in the frame. 172 static inline void msgb_push_cmd(struct msgbuf *msgb, u8 seq, u16 rqid, in msgb_push_cmd() argument 195 __msgb_push_u16(msgb, rqid); /* Request ID. */ in msgb_push_cmd()
|
H A D | ssh_request_layer.c | 89 + SSH_MSGOFFSET_COMMAND(rqid)); in ssh_request_get_rqid() 177 rtl_dbg_cond(rtl, "rtl: completing request (rqid: %#06x, status: %d)\n", in ssh_rtl_complete_with_status() 191 rtl_dbg(rtl, "rtl: completing request with response (rqid: %#06x)\n", in ssh_rtl_complete_with_rsp() 473 u16 rqid = get_unaligned_le16(&command->rqid); in ssh_rtl_complete() local 484 if (unlikely(ssh_request_get_rqid(p) != rqid)) in ssh_rtl_complete() 516 rtl_warn(rtl, "rtl: dropping unexpected command message (rqid = %#06x)\n", in ssh_rtl_complete() 517 rqid); in ssh_rtl_complete() 549 rtl_err(rtl, "rtl: received response before ACK for request (rqid = %#06x)\n", in ssh_rtl_complete() 550 rqid); in ssh_rtl_complete() [all...] |
/kernel/linux/linux-5.10/include/xen/interface/io/ |
H A D | vscsiif.h | 143 * channel, id, lun and the operation's rqid in ref_rqid. 191 uint16_t rqid; /* private guest value, echoed in resp */ member 217 uint16_t rqid; /* identifies request */ member
|
/kernel/linux/linux-6.6/include/xen/interface/io/ |
H A D | vscsiif.h | 196 * channel, id, lun and the operation's rqid in ref_rqid. 247 uint16_t rqid; /* private guest value, echoed in resp */ member 273 uint16_t rqid; /* identifies request */ member
|
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | xen-scsifront.c | 83 uint16_t rqid; member 195 shadow->rqid = id; in scsifront_do_request() 200 ring_req->rqid = id; in scsifront_do_request() 254 id = ring_rsp->rqid; in scsifront_cdb_cmd_done() 278 uint16_t id = ring_rsp->rqid; in scsifront_sync_cmd_done() 310 if (WARN(ring_rsp->rqid >= VSCSIIF_MAX_REQS || in scsifront_do_response() 311 test_bit(ring_rsp->rqid, info->shadow_free_bitmap), in scsifront_do_response() 312 "illegal rqid %u returned by backend!\n", ring_rsp->rqid)) in scsifront_do_response() 315 if (info->shadow[ring_rsp->rqid] in scsifront_do_response() [all...] |
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | xen-scsifront.c | 80 uint16_t rqid; member 198 shadow->rqid = id; in scsifront_do_request() 203 ring_req->rqid = id; in scsifront_do_request() 307 id = ring_rsp->rqid; in scsifront_cdb_cmd_done() 334 uint16_t id = ring_rsp->rqid; in scsifront_sync_cmd_done() 369 if (ring_rsp->rqid >= VSCSIIF_MAX_REQS || in scsifront_do_response() 370 !info->shadow[ring_rsp->rqid]->inflight) { in scsifront_do_response() 371 scsifront_set_error(info, "illegal rqid returned by backend!"); in scsifront_do_response() 374 shadow = info->shadow[ring_rsp->rqid]; in scsifront_do_response() 462 resp.rqid in scsifront_finish_all() [all...] |
/kernel/linux/linux-6.6/drivers/platform/surface/ |
H A D | surface_aggregator_cdev.c | 137 const u16 rqid = ssh_tc_to_rqid(tc); in ssam_cdev_notifier_register() local 138 const u16 event = ssh_rqid_to_event(rqid); in ssam_cdev_notifier_register() 145 if (!ssh_rqid_is_event(rqid)) in ssam_cdev_notifier_register() 189 const u16 rqid = ssh_tc_to_rqid(tc); in ssam_cdev_notifier_unregister() local 190 const u16 event = ssh_rqid_to_event(rqid); in ssam_cdev_notifier_unregister() 196 if (!ssh_rqid_is_event(rqid)) in ssam_cdev_notifier_unregister()
|
/kernel/linux/linux-5.10/include/uapi/rdma/ |
H A D | cxgb4-abi.h | 81 __u32 rqid; member
|
/kernel/linux/linux-6.6/include/uapi/rdma/ |
H A D | cxgb4-abi.h | 81 __u32 rqid; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/rdma/ |
H A D | cxgb4-abi.h | 52 __u32 rqid; member
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/rdma/ |
H A D | cxgb4-abi.h | 39 __u32 rqid; member
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/rdma/ |
H A D | cxgb4-abi.h | 52 __u32 rqid; member
|
/kernel/linux/linux-5.10/drivers/xen/ |
H A D | xen-scsiback.c | 117 uint16_t rqid; member 287 uint16_t rqid) in scsiback_send_response() 301 ring_res->rqid = rqid; in scsiback_send_response() 327 resid, pending_req->rqid); in scsiback_do_resp_with_sense() 366 se_cmd->tag = pending_req->rqid; in scsiback_cmd_exec() 678 pending_req->rqid = ring_req->rqid; in prepare_pending_reqs() 729 ring_req.rqid); in scsiback_do_cmd_fn() 285 scsiback_send_response(struct vscsibk_info *info, char *sense_buffer, int32_t result, uint32_t resid, uint16_t rqid) scsiback_send_response() argument
|
/kernel/linux/linux-6.6/drivers/xen/ |
H A D | xen-scsiback.c | 115 uint16_t rqid; member 349 uint16_t rqid) in scsiback_send_response() 363 ring_res->rqid = rqid; in scsiback_send_response() 389 resid, pending_req->rqid); in scsiback_do_resp_with_sense() 427 se_cmd->tag = pending_req->rqid; in scsiback_cmd_exec() 737 pending_req->rqid = ring_req->rqid; in prepare_pending_reqs() 788 ring_req.rqid); in scsiback_do_cmd_fn() 347 scsiback_send_response(struct vscsibk_info *info, char *sense_buffer, int32_t result, uint32_t resid, uint16_t rqid) scsiback_send_response() argument
|
/kernel/linux/linux-5.10/drivers/s390/crypto/ |
H A D | zcrypt_msgtype6.h | 46 unsigned char rqid[2]; /* rqid. internal to 603 */ member
|
H A D | zcrypt_msgtype6.c | 506 .rqid = {0x00, 0x01}, in xcrb_msg_to_type6_ep11cprb_msgx()
|
/kernel/linux/linux-6.6/drivers/s390/crypto/ |
H A D | zcrypt_msgtype6.h | 44 unsigned char rqid[2]; /* rqid. internal to 603 */ member
|
H A D | zcrypt_msgtype6.c | 462 .rqid = {0x00, 0x01}, in xcrb_msg_to_type6_ep11cprb_msgx()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/cxgb4/ |
H A D | qp.c | 296 pr_warn("%s: sqid %u or rqid %u not in BAR2 range\n", in create_qp() 386 pr_debug("sqid 0x%x rqid 0x%x kdb 0x%p sq_bar2_addr %p rq_bar2_addr %p\n", in create_qp() 1845 pr_debug("qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n", in c4iw_modify_qp() 2268 uresp.rqid = qhp->wq.rq.qid; in c4iw_create_qp()
|