| /linux/tools/perf/util/ |
| H A D | db-export.c | 38 if (evsel->db_id) in db_export__evsel() 41 evsel->db_id = ++dbe->evsel_last_db_id; in db_export__evsel() 51 if (machine->db_id) in db_export__machine() 54 machine->db_id = ++dbe->machine_last_db_id; in db_export__machine() 85 comm->db_id = ++dbe->comm_last_db_id; in __db_export__comm() 96 if (comm->db_id) in db_export__comm() 113 if (comm->db_id) in db_export__exec_comm() 136 u64 db_id; in db_export__comm_thread() local 138 db_id = ++dbe->comm_thread_last_db_id; in db_export__comm_thread() 141 return dbe->export_comm_thread(dbe, db_id, comm, thread); in db_export__comm_thread() [all …]
|
| H A D | thread.h | 55 u64 db_id; in DECLARE_RC_STRUCT() local 256 return RC_CHK_ACCESS(thread)->db_id; in thread__db_id() 259 static inline void thread__set_db_id(struct thread *thread, u64 db_id) in thread__set_db_id() argument 261 RC_CHK_ACCESS(thread)->db_id = db_id; in thread__set_db_id()
|
| H A D | db-export.h | 30 u64 db_id; member 48 int (*export_comm_thread)(struct db_export *dbe, u64 db_id, 60 int (*export_context_switch)(struct db_export *dbe, u64 db_id,
|
| H A D | dso.h | 278 u64 db_id; in DECLARE_RC_STRUCT() member 448 return RC_CHK_ACCESS(dso)->db_id; in dso__db_id() 451 static inline void dso__set_db_id(struct dso *dso, u64 db_id) in dso__set_db_id() argument 453 RC_CHK_ACCESS(dso)->db_id = db_id; in dso__set_db_id()
|
| H A D | comm.h | 18 u64 db_id; member
|
| H A D | call-path.h | 32 u64 db_id; member
|
| H A D | thread-stack.c | 60 u64 db_id; member 307 .db_id = 0, in thread_stack__call_return() 318 cr.db_id = tse->db_id; in thread_stack__call_return() 333 parent_db_id = idx ? &(tse - 1)->db_id : NULL; in thread_stack__call_return() 809 tse->db_id = 0; in thread_stack__push_cp()
|
| H A D | thread-stack.h | 64 u64 db_id; member
|
| H A D | call-path.c | 20 cp->db_id = 0; in call_path__init()
|
| H A D | machine.h | 63 u64 db_id; member
|
| H A D | evsel.h | 111 u64 db_id; member
|
| /linux/drivers/accel/ivpu/ |
| H A D | ivpu_jsm_msg.c | 95 int ivpu_jsm_register_db(struct ivpu_device *vdev, u32 ctx_id, u32 db_id, in ivpu_jsm_register_db() argument 102 req.payload.register_db.db_idx = db_id; in ivpu_jsm_register_db() 110 ivpu_err_ratelimited(vdev, "Failed to register doorbell %u: %d\n", db_id, ret); in ivpu_jsm_register_db() 115 int ivpu_jsm_unregister_db(struct ivpu_device *vdev, u32 db_id) in ivpu_jsm_unregister_db() argument 121 req.payload.unregister_db.db_idx = db_id; in ivpu_jsm_unregister_db() 126 ivpu_warn_ratelimited(vdev, "Failed to unregister doorbell %u: %d\n", db_id, ret); in ivpu_jsm_unregister_db() 326 int ivpu_jsm_hws_register_db(struct ivpu_device *vdev, u32 ctx_id, u32 cmdq_id, u32 db_id, in ivpu_jsm_hws_register_db() argument 333 req.payload.hws_register_db.db_id = db_id; in ivpu_jsm_hws_register_db() 342 ivpu_err_ratelimited(vdev, "Failed to register doorbell %u: %d\n", db_id, ret); in ivpu_jsm_hws_register_db()
|
| H A D | ivpu_job.c | 31 ivpu_hw_db_set(vdev, cmdq->db_id); in ivpu_cmdq_ring_db() 221 ret = xa_alloc_cyclic(&vdev->db_xa, &cmdq->db_id, NULL, vdev->db_limit, &vdev->db_next, in ivpu_register_db() 229 ret = ivpu_jsm_hws_register_db(vdev, file_priv->ctx.id, cmdq->id, cmdq->db_id, in ivpu_register_db() 232 ret = ivpu_jsm_register_db(vdev, file_priv->ctx.id, cmdq->db_id, in ivpu_register_db() 237 cmdq->db_id, cmdq->id, file_priv->ctx.id, cmdq->priority); in ivpu_register_db() 239 xa_erase(&vdev->db_xa, cmdq->db_id); in ivpu_register_db() 240 cmdq->db_id = 0; in ivpu_register_db() 261 if (cmdq->db_id) in ivpu_cmdq_register() 286 if (!cmdq->db_id) in ivpu_cmdq_unregister() 289 ret = ivpu_jsm_unregister_db(vdev, cmdq->db_id); in ivpu_cmdq_unregister() [all …]
|
| /linux/tools/perf/util/scripting-engines/ |
| H A D | trace-event-python.c | 1151 tuple_set_d64(t, 0, evsel->db_id); in python_export_evsel() 1169 tuple_set_d64(t, 0, machine->db_id); in python_export_machine() 1189 tuple_set_d64(t, 1, machine->db_id); in python_export_thread() 1209 tuple_set_d64(t, 0, comm->db_id); in python_export_comm() 1222 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument 1230 tuple_set_d64(t, 0, db_id); in python_export_comm_thread() 1231 tuple_set_d64(t, 1, comm->db_id); in python_export_comm_thread() 1253 tuple_set_d64(t, 1, machine->db_id); in python_export_dso() 1314 tuple_set_d64(t, 0, es->db_id); in python_export_sample_table() 1315 tuple_set_d64(t, 1, es->evsel->db_id); in python_export_sample_table() [all …]
|
| /linux/drivers/net/wwan/iosm/ |
| H A D | iosm_ipc_imem.h | 471 int channel_id, u32 db_id);
|
| H A D | iosm_ipc_imem.c | 997 int channel_id, u32 db_id) in ipc_imem_channel_open() argument 1017 if (ipc_task_queue_send_task(ipc_imem, ipc_imem_tq_pipe_td_alloc, db_id, in ipc_imem_channel_open()
|
| /linux/include/net/mana/ |
| H A D | gdma.h | 705 u32 db_id; 676 u32 db_id; global() member
|
| /linux/drivers/net/ethernet/microsoft/mana/ |
| H A D | gdma_main.c | 1260 gd->doorbell = resp.db_id; in mana_gd_register_device()
|