/Linux-v4.19/mm/ |
D | highmem.c | 413 struct page_address_slot *pas; in page_address() local 418 pas = page_slot(page); in page_address() 420 spin_lock_irqsave(&pas->lock, flags); in page_address() 421 if (!list_empty(&pas->lh)) { in page_address() 424 list_for_each_entry(pam, &pas->lh, list) { in page_address() 432 spin_unlock_irqrestore(&pas->lock, flags); in page_address() 446 struct page_address_slot *pas; in set_page_address() local 451 pas = page_slot(page); in set_page_address() 457 spin_lock_irqsave(&pas->lock, flags); in set_page_address() 458 list_add_tail(&pam->list, &pas->lh); in set_page_address() [all …]
|
/Linux-v4.19/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-v4.19/drivers/infiniband/hw/mlx5/ |
D | mem.c | 143 __be64 *pas, int access_flags) in __mlx5_ib_populate_pas() argument 164 pas[i] = cpu_to_be64(umem_dma_to_mtt(pa)); in __mlx5_ib_populate_pas() 195 pas[idx] = cpu_to_be64(cur); in __mlx5_ib_populate_pas() 197 i >> shift, be64_to_cpu(pas[idx])); in __mlx5_ib_populate_pas() 209 int page_shift, __be64 *pas, int access_flags) in mlx5_ib_populate_pas() argument 212 ib_umem_num_pages(umem), pas, in mlx5_ib_populate_pas()
|
D | srq.c | 130 in->pas = kvcalloc(ncont, sizeof(*in->pas), GFP_KERNEL); in create_srq_user() 131 if (!in->pas) { in create_srq_user() 136 mlx5_ib_populate_pas(dev, srq->umem, page_shift, in->pas, 0); in create_srq_user() 154 kvfree(in->pas); in create_srq_user() 192 in->pas = kvcalloc(srq->buf.npages, sizeof(*in->pas), GFP_KERNEL); in create_srq_kernel() 193 if (!in->pas) { in create_srq_kernel() 197 mlx5_fill_page_array(&srq->buf, in->pas); in create_srq_kernel() 214 kvfree(in->pas); in create_srq_kernel() 330 kvfree(in.pas); in mlx5_ib_create_srq()
|
D | cq.c | 784 __be64 *pas; in create_cq_user() local 824 MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * ncont; in create_cq_user() 831 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas); in create_cq_user() 832 mlx5_ib_populate_pas(dev, cq->buf.umem, page_shift, pas, 0); in create_cq_user() 917 __be64 *pas; in create_cq_kernel() local 936 MLX5_FLD_SZ_BYTES(create_cq_in, pas[0]) * in create_cq_kernel() 944 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, *cqb, pas); in create_cq_kernel() 945 mlx5_fill_page_frag_array(&cq->buf.fbc.frag_buf, pas); in create_cq_kernel() 1334 __be64 *pas; in mlx5_ib_resize_cq() local 1380 MLX5_FLD_SZ_BYTES(modify_cq_in, pas[0]) * npas; in mlx5_ib_resize_cq() [all …]
|
D | qp.c | 789 __be64 *pas; in create_user_qp() local 846 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * ncont; in create_user_qp() 853 pas = (__be64 *)MLX5_ADDR_OF(create_qp_in, *in, pas); in create_user_qp() 855 mlx5_ib_populate_pas(dev, ubuffer->umem, page_shift, pas, 0); in create_user_qp() 964 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * qp->buf.npages; in create_kernel_qp() 985 (__be64 *)MLX5_ADDR_OF(create_qp_in, *in, pas)); in create_kernel_qp() 1092 __be64 *pas; in create_raw_packet_qp_sq() local 1140 pas = (__be64 *)MLX5_ADDR_OF(wq, wq, pas); in create_raw_packet_qp_sq() 1141 mlx5_ib_populate_pas(dev, sq->ubuffer.umem, page_shift, pas, 0); in create_raw_packet_qp_sq() 1194 __be64 *pas; in create_raw_packet_qp_rq() local [all …]
|
D | mr.c | 1136 __be64 *pas; in reg_create() local 1152 inlen += sizeof(*pas) * roundup(npages, 2); in reg_create() 1158 pas = (__be64 *)MLX5_ADDR_OF(create_mkey_in, in, klm_pas_mtt); in reg_create() 1160 mlx5_ib_populate_pas(dev, umem, page_shift, pas, in reg_create()
|
D | mlx5_ib.h | 1104 __be64 *pas, int access_flags); 1106 int page_shift, __be64 *pas, int access_flags);
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/ |
D | srq.c | 158 void *pas; in create_srq_cmd() local 170 pas = MLX5_ADDR_OF(create_srq_in, create_in, pas); in create_srq_cmd() 173 memcpy(pas, in->pas, pas_size); in create_srq_cmd() 252 void *pas; in create_xrc_srq_cmd() local 265 pas = MLX5_ADDR_OF(create_xrc_srq_in, create_in, pas); in create_xrc_srq_cmd() 269 memcpy(pas, in->pas, pas_size); in create_xrc_srq_cmd() 369 memcpy(MLX5_ADDR_OF(rmpc, rmpc, wq.pas), in->pas, pas_size); in create_rmp_cmd() 459 memcpy(MLX5_ADDR_OF(xrqc, xrqc, wq.pas), in->pas, pas_size); in create_xrq_cmd()
|
D | pagealloc.c | 281 inlen += npages * MLX5_FLD_SZ_BYTES(manage_pages_in, pas[0]); in give_pages() 300 MLX5_ARRAY_SET64(manage_pages_in, in, pas, i, addr); in give_pages() 326 free_4k(dev, MLX5_GET64(manage_pages_in, in, pas[i])); in give_pages() 357 MLX5_ARRAY_SET64(manage_pages_out, out, pas, i, fwp->addr); in reclaim_pages_cmd() 378 outlen += npages * MLX5_FLD_SZ_BYTES(manage_pages_out, pas[0]); in reclaim_pages() 404 free_4k(dev, MLX5_GET64(manage_pages_out, out, pas[i])); in reclaim_pages() 482 MLX5_FLD_SZ_BYTES(manage_pages_out, pas[0]); in optimal_reclaimed_pages()
|
D | alloc.c | 291 void mlx5_fill_page_array(struct mlx5_frag_buf *buf, __be64 *pas) in mlx5_fill_page_array() argument 299 pas[i] = cpu_to_be64(addr); in mlx5_fill_page_array() 304 void mlx5_fill_page_frag_array(struct mlx5_frag_buf *buf, __be64 *pas) in mlx5_fill_page_frag_array() argument 309 pas[i] = cpu_to_be64(buf->frags[i].map); in mlx5_fill_page_frag_array()
|
D | eq.c | 654 __be64 *pas; in mlx5_create_map_eq() local 682 MLX5_FLD_SZ_BYTES(create_eq_in, pas[0]) * eq->buf.npages; in mlx5_create_map_eq() 690 pas = (__be64 *)MLX5_ADDR_OF(create_eq_in, in, pas); in mlx5_create_map_eq() 691 mlx5_fill_page_array(&eq->buf, pas); in mlx5_create_map_eq()
|
D | en_main.c | 755 (__be64 *)MLX5_ADDR_OF(wq, wq, pas)); in mlx5e_create_rq() 1216 (__be64 *)MLX5_ADDR_OF(wq, wq, pas)); in mlx5e_create_sq() 1688 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas)); in mlx5e_create_cq()
|
/Linux-v4.19/include/linux/mlx5/ |
D | srq.h | 59 __be64 *pas; member
|
D | mlx5_ifc.h | 1296 struct mlx5_ifc_cmd_pas_bits pas[0]; member 3737 u8 pas[0][0x40]; member 3938 u8 pas[0][0x40]; member 4149 u8 pas[0][0x40]; member 4789 u8 pas[0][0x40]; member 5026 u8 pas[0][0x40]; member 5628 u8 pas[0][0x40]; member 5692 u8 pas[0][0x40]; member 5713 u8 pas[0][0x40]; member 6661 u8 pas[0][0x40]; member [all …]
|
D | driver.h | 1115 void mlx5_fill_page_array(struct mlx5_frag_buf *buf, __be64 *pas); 1116 void mlx5_fill_page_frag_array(struct mlx5_frag_buf *frag_buf, __be64 *pas);
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
D | conn.c | 437 __be64 *pas; in mlx5_fpga_conn_create_cq() local 476 pas = (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas); in mlx5_fpga_conn_create_cq() 477 mlx5_fill_page_frag_array(&conn->cq.wq_ctrl.buf, pas); in mlx5_fpga_conn_create_cq() 569 MLX5_FLD_SZ_BYTES(create_qp_in, pas[0]) * in mlx5_fpga_conn_create_qp() 597 (__be64 *)MLX5_ADDR_OF(create_qp_in, in, pas)); in mlx5_fpga_conn_create_qp()
|
/Linux-v4.19/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-v4.19/drivers/misc/vmw_vmci/ |
D | vmci_queue_pair.c | 140 dma_addr_t *pas; member 265 queue->kernel_if->u.g.pas[i]); in qp_free_queue() 291 (sizeof(*queue->kernel_if->u.g.pas) + in qp_alloc_queue() 295 pas_size = num_pages * sizeof(*queue->kernel_if->u.g.pas); in qp_alloc_queue() 308 queue->kernel_if->u.g.pas = (dma_addr_t *)(queue->kernel_if + 1); in qp_alloc_queue() 310 (void **)((u8 *)queue->kernel_if->u.g.pas + pas_size); in qp_alloc_queue() 316 &queue->kernel_if->u.g.pas[i], in qp_alloc_queue() 469 produce_q->kernel_if->u.g.pas[i] >> PAGE_SHIFT; in qp_alloc_ppn_set() 482 consume_q->kernel_if->u.g.pas[i] >> PAGE_SHIFT; in qp_alloc_ppn_set()
|