/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | htb.c | 17 u16 qid; member 40 if (node->qid == MLX5E_QOS_QID_INNER) in mlx5e_htb_enumerate_leaves() 42 err = callback(data, node->qid, node->hw_id); in mlx5e_htb_enumerate_leaves() 70 mlx5e_htb_node_create_leaf(struct mlx5e_htb *htb, u16 classid, u16 qid, in mlx5e_htb_node_create_leaf() argument 81 node->qid = qid; in mlx5e_htb_node_create_leaf() 82 __set_bit(qid, htb->qos_used_qids); in mlx5e_htb_node_create_leaf() 100 node->qid = MLX5E_QOS_QID_INNER; in mlx5e_htb_node_create_root() 134 if (node->qid != MLX5E_QOS_QID_INNER) { in mlx5e_htb_node_delete() 135 __clear_bit(node->qid, htb->qos_used_qids); in mlx5e_htb_node_delete() 150 u16 qid; in mlx5e_htb_get_txq_by_classid() local [all …]
|
D | qos.c | 38 u16 mlx5e_qid_from_qos(struct mlx5e_channels *chs, u16 qid) in mlx5e_qid_from_qos() argument 49 return (chs->params.num_channels + is_ptp) * mlx5e_get_dcb_num_tc(&chs->params) + qid; in mlx5e_qid_from_qos() 54 static struct mlx5e_txqsq *mlx5e_get_qos_sq(struct mlx5e_priv *priv, int qid) in mlx5e_get_qos_sq() argument 61 ix = qid % params->num_channels; in mlx5e_get_qos_sq() 62 qid /= params->num_channels; in mlx5e_get_qos_sq() 66 return mlx5e_state_dereference(priv, qos_sqs[qid]); in mlx5e_get_qos_sq() 76 int txq_ix, ix, qid, err = 0; in mlx5e_open_qos_sq() local 113 qid = node_qid / params->num_channels; in mlx5e_open_qos_sq() 139 rcu_assign_pointer(qos_sqs[qid], sq); in mlx5e_open_qos_sq() 161 u16 qid; in mlx5e_activate_qos_sq() local [all …]
|
/linux-6.12.1/drivers/vdpa/pds/ |
D | vdpa_dev.c | 72 static int pds_vdpa_set_vq_address(struct vdpa_device *vdpa_dev, u16 qid, in pds_vdpa_set_vq_address() argument 77 pdsv->vqs[qid].desc_addr = desc_addr; in pds_vdpa_set_vq_address() 78 pdsv->vqs[qid].avail_addr = driver_addr; in pds_vdpa_set_vq_address() 79 pdsv->vqs[qid].used_addr = device_addr; in pds_vdpa_set_vq_address() 84 static void pds_vdpa_set_vq_num(struct vdpa_device *vdpa_dev, u16 qid, u32 num) in pds_vdpa_set_vq_num() argument 88 pdsv->vqs[qid].q_len = num; in pds_vdpa_set_vq_num() 91 static void pds_vdpa_kick_vq(struct vdpa_device *vdpa_dev, u16 qid) in pds_vdpa_kick_vq() argument 95 iowrite16(qid, pdsv->vqs[qid].notify); in pds_vdpa_kick_vq() 98 static void pds_vdpa_set_vq_cb(struct vdpa_device *vdpa_dev, u16 qid, in pds_vdpa_set_vq_cb() argument 103 pdsv->vqs[qid].event_cb = *cb; in pds_vdpa_set_vq_cb() [all …]
|
D | cmds.c | 125 int pds_vdpa_cmd_init_vq(struct pds_vdpa_device *pdsv, u16 qid, u16 invert_idx, in pds_vdpa_cmd_init_vq() argument 134 .vdpa_vq_init.qid = cpu_to_le16(qid), in pds_vdpa_cmd_init_vq() 139 .vdpa_vq_init.intr_index = cpu_to_le16(qid), in pds_vdpa_cmd_init_vq() 147 __func__, qid, ilog2(vq_info->q_len), in pds_vdpa_cmd_init_vq() 154 qid, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_init_vq() 159 int pds_vdpa_cmd_reset_vq(struct pds_vdpa_device *pdsv, u16 qid, u16 invert_idx, in pds_vdpa_cmd_reset_vq() argument 168 .vdpa_vq_reset.qid = cpu_to_le16(qid), in pds_vdpa_cmd_reset_vq() 177 qid, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_reset_vq()
|
/linux-6.12.1/arch/s390/include/asm/ |
D | ap.h | 135 static inline struct ap_queue_status ap_tapq(ap_qid_t qid, in ap_tapq() argument 148 : [qid] "d" (qid) in ap_tapq() 163 static inline struct ap_queue_status ap_test_queue(ap_qid_t qid, int tbit, in ap_test_queue() argument 167 qid |= 1UL << 23; /* set T bit*/ in ap_test_queue() 168 return ap_tapq(qid, info); in ap_test_queue() 178 static inline struct ap_queue_status ap_rapq(ap_qid_t qid, int fbit) in ap_rapq() argument 180 unsigned long reg0 = qid | (1UL << 24); /* fc 1UL is RAPQ */ in ap_rapq() 203 static inline struct ap_queue_status ap_zapq(ap_qid_t qid, int fbit) in ap_zapq() argument 205 unsigned long reg0 = qid | (2UL << 24); /* fc 2UL is ZAPQ */ in ap_zapq() 303 static inline struct ap_queue_status ap_aqic(ap_qid_t qid, in ap_aqic() argument [all …]
|
/linux-6.12.1/drivers/net/ethernet/marvell/prestera/ |
D | prestera_pci.c | 242 static u32 prestera_fw_evtq_len(struct prestera_fw *fw, u8 qid) in prestera_fw_evtq_len() argument 244 return fw->evt_queue[qid].len; in prestera_fw_evtq_len() 247 static u32 prestera_fw_evtq_avail(struct prestera_fw *fw, u8 qid) in prestera_fw_evtq_avail() argument 249 u32 wr_idx = prestera_fw_read(fw, PRESTERA_EVTQ_WR_IDX_REG(qid)); in prestera_fw_evtq_avail() 250 u32 rd_idx = prestera_fw_read(fw, PRESTERA_EVTQ_RD_IDX_REG(qid)); in prestera_fw_evtq_avail() 252 return CIRC_CNT(wr_idx, rd_idx, prestera_fw_evtq_len(fw, qid)); in prestera_fw_evtq_avail() 256 u8 qid, u32 idx) in prestera_fw_evtq_rd_set() argument 258 u32 rd_idx = idx & (prestera_fw_evtq_len(fw, qid) - 1); in prestera_fw_evtq_rd_set() 260 prestera_fw_write(fw, PRESTERA_EVTQ_RD_IDX_REG(qid), rd_idx); in prestera_fw_evtq_rd_set() 263 static u8 __iomem *prestera_fw_evtq_buf(struct prestera_fw *fw, u8 qid) in prestera_fw_evtq_buf() argument [all …]
|
/linux-6.12.1/drivers/infiniband/hw/cxgb4/ |
D | resource.c | 111 u32 qid; in c4iw_get_cqid() local 119 qid = entry->qid; in c4iw_get_cqid() 122 qid = c4iw_get_resource(&rdev->resource.qid_table); in c4iw_get_cqid() 123 if (!qid) in c4iw_get_cqid() 126 rdev->stats.qid.cur += rdev->qpmask + 1; in c4iw_get_cqid() 128 for (i = qid+1; i & rdev->qpmask; i++) { in c4iw_get_cqid() 132 entry->qid = i; in c4iw_get_cqid() 143 entry->qid = qid; in c4iw_get_cqid() 145 for (i = qid+1; i & rdev->qpmask; i++) { in c4iw_get_cqid() 149 entry->qid = i; in c4iw_get_cqid() [all …]
|
/linux-6.12.1/drivers/s390/crypto/ |
D | ap_queue.c | 61 status = ap_aqic(aq->qid, qirqctrl, virt_to_phys(ind)); in ap_queue_enable_irq() 73 AP_QID_CARD(aq->qid), in ap_queue_enable_irq() 74 AP_QID_QUEUE(aq->qid)); in ap_queue_enable_irq() 97 __ap_send(ap_qid_t qid, unsigned long psmid, void *msg, size_t msglen, in __ap_send() argument 101 qid |= 0x400000UL; in __ap_send() 102 return ap_nqap(qid, psmid, msg, msglen); in __ap_send() 136 status = ap_dqap(aq->qid, &aq->reply->psmid, in ap_sm_recv() 169 AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); in ap_sm_recv() 180 AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid), in ap_sm_recv() 224 AP_QID_CARD(aq->qid), AP_QID_QUEUE(aq->qid)); in ap_sm_read() [all …]
|
D | zcrypt_api.c | 646 int cpen, qpen, qid = 0, rc = -ENODEV; in zcrypt_rsa_modexpo() local 700 AP_QID_QUEUE(zq->queue->qid))) in zcrypt_rsa_modexpo() 704 tr->last_qid == zq->queue->qid) ? in zcrypt_rsa_modexpo() 723 qid = pref_zq->queue->qid; in zcrypt_rsa_modexpo() 734 tr->last_qid = qid; in zcrypt_rsa_modexpo() 737 AP_QID_CARD(qid), AP_QID_QUEUE(qid)); in zcrypt_rsa_modexpo() 750 int cpen, qpen, qid = 0, rc = -ENODEV; in zcrypt_rsa_crt() local 804 AP_QID_QUEUE(zq->queue->qid))) in zcrypt_rsa_crt() 808 tr->last_qid == zq->queue->qid) ? in zcrypt_rsa_crt() 827 qid = pref_zq->queue->qid; in zcrypt_rsa_crt() [all …]
|
/linux-6.12.1/drivers/vdpa/ifcvf/ |
D | ifcvf_base.c | 13 u16 ifcvf_set_vq_vector(struct ifcvf_hw *hw, u16 qid, int vector) in ifcvf_set_vq_vector() argument 17 vp_iowrite16(qid, &cfg->queue_select); in ifcvf_set_vq_vector() 72 u16 ifcvf_get_vq_size(struct ifcvf_hw *hw, u16 qid) in ifcvf_get_vq_size() argument 76 if (qid >= hw->nr_vring) in ifcvf_get_vq_size() 79 vp_iowrite16(qid, &hw->common_cfg->queue_select); in ifcvf_get_vq_size() 87 u16 queue_size, max_size, qid; in ifcvf_get_max_vq_size() local 90 for (qid = 1; qid < hw->nr_vring; qid++) { in ifcvf_get_max_vq_size() 91 queue_size = ifcvf_get_vq_size(hw, qid); in ifcvf_get_max_vq_size() 328 u16 ifcvf_get_vq_state(struct ifcvf_hw *hw, u16 qid) in ifcvf_get_vq_state() argument 333 last_avail_idx = vp_ioread16(&lm_cfg->vq_state_region + qid * 2); in ifcvf_get_vq_state() [all …]
|
D | ifcvf_base.h | 108 void ifcvf_notify_queue(struct ifcvf_hw *hw, u16 qid); 119 u16 ifcvf_get_vq_state(struct ifcvf_hw *hw, u16 qid); 120 int ifcvf_set_vq_state(struct ifcvf_hw *hw, u16 qid, u16 num); 122 u16 ifcvf_set_vq_vector(struct ifcvf_hw *hw, u16 qid, int vector); 124 void ifcvf_set_vq_num(struct ifcvf_hw *hw, u16 qid, u32 num); 125 int ifcvf_set_vq_address(struct ifcvf_hw *hw, u16 qid, u64 desc_area, 127 bool ifcvf_get_vq_ready(struct ifcvf_hw *hw, u16 qid); 128 void ifcvf_set_vq_ready(struct ifcvf_hw *hw, u16 qid, bool ready); 132 u16 ifcvf_get_vq_size(struct ifcvf_hw *hw, u16 qid);
|
/linux-6.12.1/drivers/nvme/host/ |
D | auth.c | 28 int qid; member 57 static int nvme_auth_submit(struct nvme_ctrl *ctrl, int qid, in nvme_auth_submit() argument 65 if (qid != 0) { in nvme_auth_submit() 83 qid == 0 ? NVME_QID_ANY : qid, flags); in nvme_auth_submit() 86 "qid %d auth_send failed with status %d\n", qid, ret); in nvme_auth_submit() 89 "qid %d auth_send failed with error %d\n", qid, ret); in nvme_auth_submit() 93 static int nvme_auth_receive_validate(struct nvme_ctrl *ctrl, int qid, in nvme_auth_receive_validate() argument 98 __func__, qid, data->auth_type, data->auth_id); in nvme_auth_receive_validate() 108 qid, data->auth_type, data->auth_id); in nvme_auth_receive_validate() 114 qid, le16_to_cpu(data->t_id)); in nvme_auth_receive_validate() [all …]
|
D | trace.h | 26 #define parse_nvme_cmd(qid, opcode, fctype, cdw10) \ argument 29 ((qid) ? \ 53 __field(int, qid) 64 __entry->qid = nvme_req_qid(req); 77 __entry->qid, __entry->cid, __entry->nsid, 79 show_opcode_name(__entry->qid, __entry->opcode, 81 parse_nvme_cmd(__entry->qid, __entry->opcode, 91 __field(int, qid) 100 __entry->qid = nvme_req_qid(req); 110 __entry->qid, __entry->cid, __entry->result, [all …]
|
/linux-6.12.1/drivers/scsi/lpfc/ |
D | lpfc_debugfs.h | 570 lpfc_debug_dump_wq_by_id(struct lpfc_hba *phba, int qid) in lpfc_debug_dump_wq_by_id() argument 575 if (phba->sli4_hba.hdwq[wq_idx].io_wq->queue_id == qid) in lpfc_debug_dump_wq_by_id() 578 pr_err("IO WQ[Idx:%d|Qid:%d]\n", wq_idx, qid); in lpfc_debug_dump_wq_by_id() 583 if (phba->sli4_hba.els_wq->queue_id == qid) { in lpfc_debug_dump_wq_by_id() 584 pr_err("ELS WQ[Qid:%d]\n", qid); in lpfc_debug_dump_wq_by_id() 589 if (phba->sli4_hba.nvmels_wq->queue_id == qid) { in lpfc_debug_dump_wq_by_id() 590 pr_err("NVME LS WQ[Qid:%d]\n", qid); in lpfc_debug_dump_wq_by_id() 604 lpfc_debug_dump_mq_by_id(struct lpfc_hba *phba, int qid) in lpfc_debug_dump_mq_by_id() argument 606 if (phba->sli4_hba.mbx_wq->queue_id == qid) { in lpfc_debug_dump_mq_by_id() 607 printk(KERN_ERR "MBX WQ[Qid:%d]\n", qid); in lpfc_debug_dump_mq_by_id() [all …]
|
/linux-6.12.1/drivers/nvme/target/ |
D | fabrics-cmd-auth.c | 21 __func__, sq->ctrl->cntlid, sq->qid, sq->dhchap_tid); in nvmet_auth_expired_work() 41 __func__, ctrl->cntlid, req->sq->qid, in nvmet_auth_negotiate() 70 __func__, ctrl->cntlid, req->sq->qid); in nvmet_auth_negotiate() 74 __func__, ctrl->cntlid, req->sq->qid, in nvmet_auth_negotiate() 98 __func__, ctrl->cntlid, req->sq->qid); in nvmet_auth_negotiate() 102 __func__, ctrl->cntlid, req->sq->qid, in nvmet_auth_negotiate() 107 __func__, ctrl->cntlid, req->sq->qid, in nvmet_auth_negotiate() 120 __func__, ctrl->cntlid, req->sq->qid, in nvmet_auth_reply() 137 ctrl->cntlid, req->sq->qid); in nvmet_auth_reply() 143 ctrl->cntlid, req->sq->qid); in nvmet_auth_reply() [all …]
|
D | trace.h | 28 #define parse_nvme_cmd(qid, opcode, fctype, cdw10) \ argument 31 (qid ? \ 73 __field(int, qid) 86 __entry->qid = req->sq->qid; 100 __entry->qid, __entry->cid, __entry->nsid, 102 show_opcode_name(__entry->qid, __entry->opcode, 104 parse_nvme_cmd(__entry->qid, __entry->opcode, 114 __field(int, qid) 121 __entry->qid = req->cq->qid; 130 __entry->qid, __entry->cid, __entry->result, __entry->status)
|
D | fabrics-cmd.c | 140 u16 qid = le16_to_cpu(c->qid); in nvmet_install_queue() local 154 if (ctrl->sqs[qid] != NULL) { in nvmet_install_queue() 155 pr_warn("qid %u has already been created\n", qid); in nvmet_install_queue() 156 req->error_loc = offsetof(struct nvmf_connect_command, qid); in nvmet_install_queue() 161 if (qid && sqsize > mqes) { in nvmet_install_queue() 177 nvmet_cq_setup(ctrl, req->cq, qid, sqsize + 1); in nvmet_install_queue() 178 nvmet_sq_setup(ctrl, req->sq, qid, sqsize + 1); in nvmet_install_queue() 189 qid, ctrl->cntlid, ret); in nvmet_install_queue() 190 ctrl->sqs[qid] = NULL; in nvmet_install_queue() 289 u16 qid = le16_to_cpu(c->qid); in nvmet_execute_io_connect() local [all …]
|
/linux-6.12.1/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_xsk.c | 15 int qid = ring->ring_idx; in ixgbe_xsk_pool() local 17 if (!xdp_on || !test_bit(qid, adapter->af_xdp_zc_qps)) in ixgbe_xsk_pool() 20 return xsk_get_pool_from_qid(adapter->netdev, qid); in ixgbe_xsk_pool() 25 u16 qid) in ixgbe_xsk_pool_enable() argument 31 if (qid >= adapter->num_rx_queues) in ixgbe_xsk_pool_enable() 34 if (qid >= netdev->real_num_rx_queues || in ixgbe_xsk_pool_enable() 35 qid >= netdev->real_num_tx_queues) in ixgbe_xsk_pool_enable() 46 ixgbe_txrx_ring_disable(adapter, qid); in ixgbe_xsk_pool_enable() 48 set_bit(qid, adapter->af_xdp_zc_qps); in ixgbe_xsk_pool_enable() 51 ixgbe_txrx_ring_enable(adapter, qid); in ixgbe_xsk_pool_enable() [all …]
|
/linux-6.12.1/drivers/net/ethernet/marvell/octeontx2/nic/ |
D | qos.c | 98 if (node->qid == OTX2_QOS_QID_NONE) { in otx2_config_sched_shaping() 176 if (node->qid == OTX2_QOS_QID_INNER && !node->parent) { in __otx2_qos_txschq_cfg() 274 if (node->qid != OTX2_QOS_QID_INNER && node->qid != OTX2_QOS_QID_NONE) { in otx2_qos_sw_node_delete() 275 __clear_bit(node->qid, pfvf->qos.qos_sq_bmap); in otx2_qos_sw_node_delete() 417 WRITE_ONCE(node->qid, OTX2_QOS_QID_INNER); in otx2_qos_alloc_root() 468 WRITE_ONCE(txschq_node->qid, OTX2_QOS_QID_NONE); in otx2_qos_alloc_txschq_node() 501 u32 quantum, u16 qid, bool static_cfg) in otx2_qos_sw_create_leaf_node() argument 513 WRITE_ONCE(node->qid, qid); in otx2_qos_sw_create_leaf_node() 523 __set_bit(qid, pfvf->qos.qos_sq_bmap); in otx2_qos_sw_create_leaf_node() 548 *otx2_sw_node_find_by_qid(struct otx2_nic *pfvf, u16 qid) in otx2_sw_node_find_by_qid() argument [all …]
|
/linux-6.12.1/drivers/gpu/drm/amd/amdkfd/ |
D | kfd_process_queue_manager.c | 34 struct process_queue_manager *pqm, unsigned int qid) in get_queue_by_qid() argument 39 if ((pqn->q && pqn->q->properties.queue_id == qid) || in get_queue_by_qid() 40 (pqn->kq && pqn->kq->queue->properties.queue_id == qid)) in get_queue_by_qid() 48 unsigned int qid) in assign_queue_slot_by_qid() argument 50 if (qid >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS) in assign_queue_slot_by_qid() 53 if (__test_and_set_bit(qid, pqm->queue_slot_bitmap)) { in assign_queue_slot_by_qid() 54 pr_err("Cannot create new queue because requested qid(%u) is in use\n", qid); in assign_queue_slot_by_qid() 62 unsigned int *qid) in find_available_queue_slot() argument 78 *qid = found; in find_available_queue_slot() 100 int pqm_set_gws(struct process_queue_manager *pqm, unsigned int qid, in pqm_set_gws() argument [all …]
|
/linux-6.12.1/drivers/vdpa/octeon_ep/ |
D | octep_vdpa.h | 78 void octep_notify_queue(struct octep_hw *oct_hw, u16 qid); 80 int octep_set_vq_address(struct octep_hw *oct_hw, u16 qid, u64 desc_area, u64 driver_area, 82 void octep_set_vq_num(struct octep_hw *oct_hw, u16 qid, u32 num); 83 void octep_set_vq_ready(struct octep_hw *oct_hw, u16 qid, bool ready); 84 bool octep_get_vq_ready(struct octep_hw *oct_hw, u16 qid); 85 int octep_set_vq_state(struct octep_hw *oct_hw, u16 qid, const struct vdpa_vq_state *state); 86 int octep_get_vq_state(struct octep_hw *oct_hw, u16 qid, struct vdpa_vq_state *state);
|
/linux-6.12.1/include/linux/ |
D | quota.h | 79 extern qid_t from_kqid(struct user_namespace *to, struct kqid qid); 80 extern qid_t from_kqid_munged(struct user_namespace *to, struct kqid qid); 81 extern bool qid_valid(struct kqid qid); 98 enum quota_type type, qid_t qid) in make_kqid() argument 105 kqid.uid = make_kuid(from, qid); in make_kqid() 108 kqid.gid = make_kgid(from, qid); in make_kqid() 111 kqid.projid = make_kprojid(from, qid); in make_kqid() 187 static inline bool qid_has_mapping(struct user_namespace *ns, struct kqid qid) in qid_has_mapping() argument 189 return from_kqid(ns, qid) != (qid_t) -1; in qid_has_mapping() 320 …int (*get_next_id)(struct super_block *sb, struct kqid *qid); /* Get next ID with existing structu… [all …]
|
/linux-6.12.1/drivers/vdpa/alibaba/ |
D | eni_vdpa.c | 257 static u16 eni_vdpa_get_vq_size(struct vdpa_device *vdpa, u16 qid) in eni_vdpa_get_vq_size() argument 261 return vp_legacy_get_queue_size(ldev, qid); in eni_vdpa_get_vq_size() 264 static int eni_vdpa_get_vq_state(struct vdpa_device *vdpa, u16 qid, in eni_vdpa_get_vq_state() argument 270 static int eni_vdpa_set_vq_state(struct vdpa_device *vdpa, u16 qid, in eni_vdpa_set_vq_state() argument 280 if (!vp_legacy_get_queue_enable(ldev, qid) in eni_vdpa_set_vq_state() 288 static void eni_vdpa_set_vq_cb(struct vdpa_device *vdpa, u16 qid, in eni_vdpa_set_vq_cb() argument 293 eni_vdpa->vring[qid].cb = *cb; in eni_vdpa_set_vq_cb() 296 static void eni_vdpa_set_vq_ready(struct vdpa_device *vdpa, u16 qid, in eni_vdpa_set_vq_ready() argument 306 vp_legacy_set_queue_address(ldev, qid, 0); in eni_vdpa_set_vq_ready() 309 static bool eni_vdpa_get_vq_ready(struct vdpa_device *vdpa, u16 qid) in eni_vdpa_get_vq_ready() argument [all …]
|
/linux-6.12.1/fs/xfs/ |
D | xfs_quotaops.c | 225 struct kqid qid, in xfs_fs_get_dqblk() argument 234 id = from_kqid(&init_user_ns, qid); in xfs_fs_get_dqblk() 235 return xfs_qm_scall_getquota(mp, id, xfs_quota_type(qid.type), qdq); in xfs_fs_get_dqblk() 242 struct kqid *qid, in xfs_fs_get_nextdqblk() argument 252 id = from_kqid(&init_user_ns, *qid); in xfs_fs_get_nextdqblk() 253 ret = xfs_qm_scall_getquota_next(mp, &id, xfs_quota_type(qid->type), in xfs_fs_get_nextdqblk() 259 *qid = make_kqid(current_user_ns(), qid->type, id); in xfs_fs_get_nextdqblk() 266 struct kqid qid, in xfs_fs_set_dqblk() argument 276 return xfs_qm_scall_setqlim(mp, from_kqid(&init_user_ns, qid), in xfs_fs_set_dqblk() 277 xfs_quota_type(qid.type), qdq); in xfs_fs_set_dqblk()
|
/linux-6.12.1/drivers/vdpa/virtio_pci/ |
D | vp_vdpa.c | 257 static int vp_vdpa_get_vq_state(struct vdpa_device *vdpa, u16 qid, in vp_vdpa_get_vq_state() argument 292 static int vp_vdpa_set_vq_state(struct vdpa_device *vdpa, u16 qid, in vp_vdpa_set_vq_state() argument 302 !vp_modern_get_queue_enable(mdev, qid)) { in vp_vdpa_set_vq_state() 313 static void vp_vdpa_set_vq_cb(struct vdpa_device *vdpa, u16 qid, in vp_vdpa_set_vq_cb() argument 318 vp_vdpa->vring[qid].cb = *cb; in vp_vdpa_set_vq_cb() 322 u16 qid, bool ready) in vp_vdpa_set_vq_ready() argument 326 vp_modern_set_queue_enable(mdev, qid, ready); in vp_vdpa_set_vq_ready() 329 static bool vp_vdpa_get_vq_ready(struct vdpa_device *vdpa, u16 qid) in vp_vdpa_get_vq_ready() argument 333 return vp_modern_get_queue_enable(mdev, qid); in vp_vdpa_get_vq_ready() 336 static void vp_vdpa_set_vq_num(struct vdpa_device *vdpa, u16 qid, in vp_vdpa_set_vq_num() argument [all …]
|