/linux-6.12.1/fs/nfsd/ |
D | nfs4acl.c | 189 summarize_posix_acl(struct posix_acl *acl, struct posix_acl_summary *pas) in summarize_posix_acl() argument 198 memset(pas, 0, sizeof(*pas)); in summarize_posix_acl() 199 pas->mask = 07; in summarize_posix_acl() 206 pas->owner = pa->e_perm; in summarize_posix_acl() 209 pas->group = pa->e_perm; in summarize_posix_acl() 212 pas->users |= pa->e_perm; in summarize_posix_acl() 215 pas->groups |= pa->e_perm; in summarize_posix_acl() 218 pas->other = pa->e_perm; in summarize_posix_acl() 221 pas->mask = pa->e_perm; in summarize_posix_acl() 226 pas->users &= pas->mask; in summarize_posix_acl() [all …]
|
/linux-6.12.1/drivers/infiniband/hw/mlx5/ |
D | srq_cmd.c | 120 void *pas; in create_srq_cmd() local 139 pas = MLX5_ADDR_OF(create_srq_in, create_in, pas); in create_srq_cmd() 146 pas, 0); in create_srq_cmd() 148 memcpy(pas, in->pas, pas_size); in create_srq_cmd() 223 void *pas; in create_xrc_srq_cmd() local 243 pas = MLX5_ADDR_OF(create_xrc_srq_in, create_in, pas); in create_xrc_srq_cmd() 251 pas, 0); in create_xrc_srq_cmd() 253 memcpy(pas, in->pas, pas_size); in create_xrc_srq_cmd() 335 void *pas; in create_rmp_cmd() local 362 pas = MLX5_ADDR_OF(rmpc, rmpc, wq.pas); in create_rmp_cmd() [all …]
|
D | mem.c | 40 void mlx5_ib_populate_pas(struct ib_umem *umem, size_t page_size, __be64 *pas, in mlx5_ib_populate_pas() argument 46 *pas = cpu_to_be64(rdma_block_iter_dma_address(&biter) | in mlx5_ib_populate_pas() 48 pas++; in mlx5_ib_populate_pas()
|
D | cq.c | 727 __be64 *pas; in create_cq_user() local 780 MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * ncont; in create_cq_user() 787 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas); in create_cq_user() 788 mlx5_ib_populate_pas(cq->buf.umem, page_size, pas, 0); in create_cq_user() 891 __be64 *pas; in create_cq_kernel() local 910 MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * in create_cq_kernel() 918 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas); in create_cq_kernel() 919 mlx5_fill_page_frag_array(&cq->buf.frag_buf, pas); in create_cq_kernel() 1279 __be64 *pas; in mlx5_ib_resize_cq() local 1337 MLX5_FLD_SZ_BYTES(modify_cq_in, pas[0]) * npas; in mlx5_ib_resize_cq() [all …]
|
D | srq.c | 139 in->pas = kvcalloc(srq->buf.npages, sizeof(*in->pas), GFP_KERNEL); in create_srq_kernel() 140 if (!in->pas) { in create_srq_kernel() 144 mlx5_fill_page_frag_array(&srq->buf, in->pas); in create_srq_kernel() 161 kvfree(in->pas); in create_srq_kernel() 288 kvfree(in.pas); in mlx5_ib_create_srq()
|
D | srq.h | 30 __be64 *pas; member
|
D | qp.c | 955 __be64 *pas; in _create_user_qp() local 1023 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * ncont; in _create_user_qp() 1033 pas = (__be64 *)MLX5_ADDR_OF(create_qp_in, *in, pas); in _create_user_qp() 1035 mlx5_ib_populate_pas(ubuffer->umem, page_size, pas, 0); in _create_user_qp() 1153 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * qp->buf.npages; in _create_kernel_qp() 1174 *in, pas)); in _create_kernel_qp() 1341 __be64 *pas; in create_raw_packet_qp_sq() local 1403 pas = (__be64 *)MLX5_ADDR_OF(wq, wq, pas); in create_raw_packet_qp_sq() 1404 mlx5_ib_populate_pas(sq->ubuffer.umem, page_size, pas, 0); in create_raw_packet_qp_sq() 1435 __be64 *pas; in create_raw_packet_qp_rq() local [all …]
|
D | mr.c | 1227 __be64 *pas; in reg_create() local 1248 inlen += sizeof(*pas) * in reg_create() 1255 pas = (__be64 *)MLX5_ADDR_OF(create_mkey_in, in, klm_pas_mtt); in reg_create() 1261 mlx5_ib_populate_pas(umem, 1UL << mr->page_shift, pas, in reg_create()
|
/linux-6.12.1/mm/ |
D | highmem.c | 757 struct page_address_slot *pas; in page_address() local 762 pas = page_slot(page); in page_address() 764 spin_lock_irqsave(&pas->lock, flags); in page_address() 765 if (!list_empty(&pas->lh)) { in page_address() 768 list_for_each_entry(pam, &pas->lh, list) { in page_address() 776 spin_unlock_irqrestore(&pas->lock, flags); in page_address() 789 struct page_address_slot *pas; in set_page_address() local 794 pas = page_slot(page); in set_page_address() 800 spin_lock_irqsave(&pas->lock, flags); in set_page_address() 801 list_add_tail(&pam->list, &pas->lh); in set_page_address() [all …]
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/ |
D | alloc.c | 236 void mlx5_fill_page_frag_array_perm(struct mlx5_frag_buf *buf, __be64 *pas, u8 perm) in mlx5_fill_page_frag_array_perm() argument 242 pas[i] = cpu_to_be64(buf->frags[i].map | perm); in mlx5_fill_page_frag_array_perm() 246 void mlx5_fill_page_frag_array(struct mlx5_frag_buf *buf, __be64 *pas) in mlx5_fill_page_frag_array() argument 248 mlx5_fill_page_frag_array_perm(buf, pas, 0); in mlx5_fill_page_frag_array()
|
D | pagealloc.c | 366 inlen += npages * MLX5_FLD_SZ_BYTES(manage_pages_in, pas[0]); in give_pages() 387 MLX5_ARRAY_SET64(manage_pages_in, in, pas, i, addr); in give_pages() 426 free_4k(dev, MLX5_GET64(manage_pages_in, in, pas[i]), function); in give_pages() 471 MLX5_ARRAY_SET64(manage_pages_out, out, pas, index + pages_set, in fwp_fill_manage_pages_out() 532 outlen += npages * MLX5_FLD_SZ_BYTES(manage_pages_out, pas[0]); in reclaim_pages() 571 free_4k(dev, MLX5_GET64(manage_pages_out, out, pas[i]), function); in reclaim_pages() 695 MLX5_FLD_SZ_BYTES(manage_pages_out, pas[0]); in optimal_reclaimed_pages()
|
D | eq.c | 273 __be64 *pas; in create_map_eq() local 300 MLX5_FLD_SZ_BYTES(create_eq_in, pas[0]) * eq->frag_buf.npages; in create_map_eq() 308 pas = (__be64 *)MLX5_ADDR_OF(create_eq_in, in, pas); in create_map_eq() 309 mlx5_fill_page_frag_array(&eq->frag_buf, pas); in create_map_eq()
|
D | wc.c | 93 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas)); in create_wc_cq() 185 (__be64 *)MLX5_ADDR_OF(wq, wq, pas)); in create_wc_sq()
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
D | conn.c | 421 __be64 *pas; in mlx5_fpga_conn_create_cq() local 462 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas); in mlx5_fpga_conn_create_cq() 463 mlx5_fill_page_frag_array(&conn->cq.wq_ctrl.buf, pas); in mlx5_fpga_conn_create_cq() 553 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * in mlx5_fpga_conn_create_qp() 582 (__be64 *)MLX5_ADDR_OF(create_qp_in, in, pas)); in mlx5_fpga_conn_create_qp()
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
D | dr_send.c | 296 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * in dr_create_rc_qp() 326 in, pas)); in dr_create_rc_qp() 1069 __be64 *pas; in dr_create_cq() local 1114 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas); in dr_create_cq() 1115 mlx5_fill_page_frag_array(&cq->wq_ctrl.buf, pas); in dr_create_cq()
|
/linux-6.12.1/tools/power/cpupower/po/ |
D | fr.po | 295 msgstr " pas de pilotes cpufreq reconnu pour ce CPU\n" 532 msgstr "analyse du CPU %d impossible puisqu'il ne semble pas être présent\n" 628 "- le régulateur choisi n'est pas disponible, ou bien n'est pas disponible " 631 "- la tactique n'est pas disponible ;\n" 633 " n'est pas disponible, par exemple parce que le matériel ne le supporte\n" 634 " pas, ou bien n'est tout simplement pas chargé.\n"
|
/linux-6.12.1/drivers/misc/vmw_vmci/ |
D | vmci_queue_pair.c | 132 dma_addr_t *pas; member 259 queue->kernel_if->u.g.pas[i]); in qp_free_queue() 285 (sizeof(*queue->kernel_if->u.g.pas) + in qp_alloc_queue() 289 pas_size = num_pages * sizeof(*queue->kernel_if->u.g.pas); in qp_alloc_queue() 302 queue->kernel_if->u.g.pas = (dma_addr_t *)(queue->kernel_if + 1); in qp_alloc_queue() 304 (void **)((u8 *)queue->kernel_if->u.g.pas + pas_size); in qp_alloc_queue() 310 &queue->kernel_if->u.g.pas[i], in qp_alloc_queue() 461 produce_q->kernel_if->u.g.pas[i] >> PAGE_SHIFT; in qp_alloc_ppn_set() 465 consume_q->kernel_if->u.g.pas[i] >> PAGE_SHIFT; in qp_alloc_ppn_set()
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/lib/ |
D | aso.c | 99 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas)); in create_aso_cq() 212 (__be64 *)MLX5_ADDR_OF(wq, wq, pas)); in create_aso_sq()
|
/linux-6.12.1/drivers/vfio/pci/mlx5/ |
D | cmd.c | 1100 __be64 *pas; in mlx5vf_create_cq() local 1119 MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * in mlx5vf_create_cq() 1139 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas); in mlx5vf_create_cq() 1140 mlx5_fill_page_frag_array(&cq->buf.frag_buf, pas); in mlx5vf_create_cq() 1196 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * in mlx5vf_create_rc_qp() 1223 in, pas)); in mlx5vf_create_rc_qp()
|
/linux-6.12.1/drivers/vdpa/mlx5/net/ |
D | mlx5_vnet.c | 377 __be64 *pas; in qp_prepare() local 403 pas = (__be64 *)MLX5_ADDR_OF(create_qp_in, in, pas); in qp_prepare() 404 mlx5_fill_page_frag_array(&vqp->frag_buf, pas); in qp_prepare() 562 __be64 *pas; in cq_create() local 584 MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * vcq->buf.frag_buf.npages; in cq_create() 592 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas); in cq_create() 593 mlx5_fill_page_frag_array(&vcq->buf.frag_buf, pas); in cq_create() 725 __be64 *pas; in create_umem() local 747 pas = (__be64 *)MLX5_ADDR_OF(umem, um, mtt[0]); in create_umem() 748 mlx5_fill_page_frag_array_perm(&umem->frag_buf, pas, MLX5_MTT_PERM_RW); in create_umem()
|
/linux-6.12.1/include/linux/mlx5/ |
D | driver.h | 1084 void mlx5_fill_page_frag_array_perm(struct mlx5_frag_buf *buf, __be64 *pas, u8 perm); 1085 void mlx5_fill_page_frag_array(struct mlx5_frag_buf *frag_buf, __be64 *pas);
|
D | mlx5_ifc.h | 2330 struct mlx5_ifc_cmd_pas_bits pas[]; member 5249 u8 pas[][0x40]; member 5560 u8 pas[][0x40]; member 5779 u8 pas[0][0x40]; member 5783 struct mlx5_ifc_cmd_pas_bits pas[0]; member 6923 u8 pas[][0x40]; member 7233 u8 pas[][0x40]; member 7859 u8 pas[][0x40]; member 7923 u8 pas[][0x40]; member 7945 u8 pas[][0x40]; member [all …]
|
/linux-6.12.1/arch/arm64/boot/dts/qcom/ |
D | qcm2290.dtsi | 1802 compatible = "qcom,qcm2290-mpss-pas", "qcom,sm6115-mpss-pas"; 1839 compatible = "qcom,qcm2290-adsp-pas", "qcom,sm6115-adsp-pas";
|
D | qcs404.dtsi | 610 compatible = "qcom,qcs404-cdsp-pas"; 933 compatible = "qcom,qcs404-wcss-pas"; 1440 compatible = "qcom,qcs404-adsp-pas";
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/ |
D | mlx5hws_send.c | 647 (__be64 *)MLX5_ADDR_OF(wq, wq, pas)); in hws_send_ring_create_sq() 815 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas)); in hws_send_ring_create_cq()
|