/kernel/linux/linux-6.6/fs/erofs/ |
H A D | zdata.c | 111 static inline bool z_erofs_is_inline_pcluster(struct z_erofs_pcluster *pcl) in z_erofs_is_inline_pcluster() argument 113 return !pcl->obj.index; in z_erofs_is_inline_pcluster() 116 static inline unsigned int z_erofs_pclusterpages(struct z_erofs_pcluster *pcl) in z_erofs_pclusterpages() argument 118 if (z_erofs_is_inline_pcluster(pcl)) in z_erofs_pclusterpages() 120 return pcl->pclusterpages; in z_erofs_pclusterpages() 307 struct z_erofs_pcluster *pcl; in z_erofs_alloc_pcluster() local 312 pcl = kmem_cache_zalloc(pcs->slab, GFP_NOFS); in z_erofs_alloc_pcluster() 313 if (!pcl) in z_erofs_alloc_pcluster() 315 pcl->pclusterpages = nrpages; in z_erofs_alloc_pcluster() 316 return pcl; in z_erofs_alloc_pcluster() 321 z_erofs_free_pcluster(struct z_erofs_pcluster *pcl) z_erofs_free_pcluster() argument 527 struct z_erofs_pcluster *pcl; global() member 561 struct z_erofs_pcluster *pcl = fe->pcl; z_erofs_bind_cache() local 627 struct z_erofs_pcluster *const pcl = erofs_try_to_free_all_cached_pages() local 659 struct z_erofs_pcluster *pcl = folio_get_private(folio); z_erofs_cache_release_folio() local 727 struct z_erofs_pcluster *const pcl = fe->pcl; z_erofs_try_inplace_io() local 762 struct z_erofs_pcluster *pcl = f->pcl; z_erofs_try_to_claim_pcluster() local 782 struct z_erofs_pcluster *pcl; z_erofs_register_pcluster() local 915 struct z_erofs_pcluster *const pcl = erofs_workgroup_free_rcu() local 923 struct z_erofs_pcluster *pcl = fe->pcl; z_erofs_pcluster_end() local 1090 struct z_erofs_pcluster *pcl; global() member 1174 struct z_erofs_pcluster *pcl = be->pcl; z_erofs_parse_out_bvecs() local 1200 struct z_erofs_pcluster *pcl = be->pcl; z_erofs_parse_in_bvecs() local 1243 struct z_erofs_pcluster *pcl = be->pcl; z_erofs_decompress_pcluster() local 1438 pickup_page_for_submission(struct z_erofs_pcluster *pcl, unsigned int nr, struct page **pagepool, struct address_space *mc) pickup_page_for_submission() argument 1584 move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl, z_erofs_next_pcluster_t qtail[], z_erofs_next_pcluster_t owned_head) move_to_bypass_jobqueue() argument 1656 struct z_erofs_pcluster *pcl; z_erofs_submit_queue() local [all...] |
/kernel/linux/linux-6.6/include/linux/sunrpc/ |
H A D | svc_rdma_pcl.h | 35 * @pcl: parsed chunk list to initialize 38 static inline void pcl_init(struct svc_rdma_pcl *pcl) in pcl_init() argument 40 INIT_LIST_HEAD(&pcl->cl_chunks); in pcl_init() 45 * @pcl: parsed chunk list 48 static inline bool pcl_is_empty(const struct svc_rdma_pcl *pcl) in pcl_is_empty() argument 50 return list_empty(&pcl->cl_chunks); in pcl_is_empty() 55 * @pcl: parsed chunk list 60 pcl_first_chunk(const struct svc_rdma_pcl *pcl) in pcl_first_chunk() argument 62 if (pcl_is_empty(pcl)) in pcl_first_chunk() 64 return list_first_entry(&pcl in pcl_first_chunk() 76 pcl_next_chunk(const struct svc_rdma_pcl *pcl, struct svc_rdma_chunk *chunk) pcl_next_chunk() argument [all...] |
/kernel/linux/linux-6.6/net/sunrpc/xprtrdma/ |
H A D | svc_rdma_pcl.c | 14 * @pcl: parsed chunk list 17 void pcl_free(struct svc_rdma_pcl *pcl) in pcl_free() argument 19 while (!list_empty(&pcl->cl_chunks)) { in pcl_free() 22 chunk = pcl_first_chunk(pcl); in pcl_free() 44 pcl_lookup_position(struct svc_rdma_pcl *pcl, u32 position) in pcl_lookup_position() argument 48 pcl_for_each_chunk(pos, pcl) { in pcl_lookup_position() 55 static void pcl_insert_position(struct svc_rdma_pcl *pcl, in pcl_insert_position() argument 60 pcl_for_each_chunk(pos, pcl) { in pcl_insert_position() 65 pcl->cl_count++; in pcl_insert_position() 104 struct svc_rdma_pcl *pcl in pcl_alloc_call() local 158 struct svc_rdma_pcl *pcl = &rctxt->rc_read_pcl; pcl_alloc_read() local 201 pcl_alloc_write(struct svc_rdma_recv_ctxt *rctxt, struct svc_rdma_pcl *pcl, __be32 *p) pcl_alloc_write() argument 265 pcl_process_nonpayloads(const struct svc_rdma_pcl *pcl, const struct xdr_buf *xdr, int (*actor)(const struct xdr_buf *, void *), void *data) pcl_process_nonpayloads() argument [all...] |
H A D | svc_rdma_rw.c | 857 const struct svc_rdma_pcl *pcl = &head->rc_read_pcl; in svc_rdma_read_multiple_chunks() local 864 chunk = pcl_first_chunk(pcl); in svc_rdma_read_multiple_chunks() 870 pcl_for_each_chunk(chunk, pcl) { in svc_rdma_read_multiple_chunks() 875 next = pcl_next_chunk(pcl, chunk); in svc_rdma_read_multiple_chunks() 1021 const struct svc_rdma_pcl *pcl = &head->rc_read_pcl; in svc_rdma_read_call_chunk() local 1026 if (pcl_is_empty(pcl)) in svc_rdma_read_call_chunk() 1030 chunk = pcl_first_chunk(pcl); in svc_rdma_read_call_chunk() 1036 pcl_for_each_chunk(chunk, pcl) { in svc_rdma_read_call_chunk() 1041 next = pcl_next_chunk(pcl, chunk); in svc_rdma_read_call_chunk()
|
/kernel/linux/linux-5.10/fs/erofs/ |
H A D | zdata.c | 59 struct z_erofs_pcluster *pcl = ptr; in z_erofs_pcluster_init_once() local 60 struct z_erofs_collection *cl = z_erofs_primarycollection(pcl); in z_erofs_pcluster_init_once() 67 pcl->compressed_pages[i] = NULL; in z_erofs_pcluster_init_once() 124 struct z_erofs_pcluster *pcl, *tailpcl; member 159 const struct z_erofs_pcluster *pcl = clt->pcl; in preload_compressed_pages() local 160 const unsigned int clusterpages = BIT(pcl->clusterbits); in preload_compressed_pages() 162 pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages); in preload_compressed_pages() 168 for (; pages < pcl in preload_compressed_pages() 204 struct z_erofs_pcluster *const pcl = erofs_try_to_free_all_cached_pages() local 241 struct z_erofs_pcluster *const pcl = (void *)page_private(page); erofs_try_to_free_cached_page() local 269 struct z_erofs_pcluster *const pcl = clt->pcl; z_erofs_try_inplace_io() local 299 try_to_claim_pcluster(struct z_erofs_pcluster *pcl, z_erofs_next_pcluster_t *owned_head) try_to_claim_pcluster() argument 332 struct z_erofs_pcluster *pcl = clt->pcl; z_erofs_lookup_collection() local 382 struct z_erofs_pcluster *pcl; z_erofs_register_collection() local 512 struct z_erofs_pcluster *const pcl = erofs_workgroup_free_rcu() local 521 struct z_erofs_pcluster *const pcl = z_erofs_collection_put() local 741 z_erofs_decompress_pcluster(struct super_block *sb, struct z_erofs_pcluster *pcl, struct list_head *pagepool) z_erofs_decompress_pcluster() argument 948 struct z_erofs_pcluster *pcl; z_erofs_decompress_queue() local 976 pickup_page_for_submission(struct z_erofs_pcluster *pcl, unsigned int nr, struct list_head *pagepool, struct address_space *mc, gfp_t gfp) pickup_page_for_submission() argument 1136 move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl, z_erofs_next_pcluster_t qtail[], z_erofs_next_pcluster_t owned_head) move_to_bypass_jobqueue() argument 1179 struct z_erofs_pcluster *pcl; z_erofs_submit_queue() local [all...] |
/kernel/linux/linux-5.10/drivers/firewire/ |
H A D | nosy.c | 40 struct pcl { struct 71 struct pcl *rcv_start_pcl, *rcv_pcl; 232 * Maybe the pcl programs could be set up to just append data instead 514 pci_free_consistent(lynx->pci_device, sizeof(struct pcl), in remove_card() 516 pci_free_consistent(lynx->pci_device, sizeof(struct pcl), in remove_card() 568 sizeof(struct pcl), &lynx->rcv_start_pcl_bus); in add_card() 570 sizeof(struct pcl), &lynx->rcv_pcl_bus); in add_card() 670 pci_free_consistent(lynx->pci_device, sizeof(struct pcl), in add_card() 673 pci_free_consistent(lynx->pci_device, sizeof(struct pcl), in add_card()
|
/kernel/linux/linux-6.6/drivers/firewire/ |
H A D | nosy.c | 40 struct pcl { struct 71 struct pcl *rcv_start_pcl, *rcv_pcl; 232 * Maybe the pcl programs could be set up to just append data instead 514 dma_free_coherent(&lynx->pci_device->dev, sizeof(struct pcl), in remove_card() 516 dma_free_coherent(&lynx->pci_device->dev, sizeof(struct pcl), in remove_card() 568 sizeof(struct pcl), in add_card() 572 sizeof(struct pcl), in add_card() 674 dma_free_coherent(&lynx->pci_device->dev, sizeof(struct pcl), in add_card() 678 dma_free_coherent(&lynx->pci_device->dev, sizeof(struct pcl), in add_card()
|
/kernel/linux/linux-5.10/arch/arc/kernel/ |
H A D | jump_label.c | 49 u32 pcl = pc & GENMASK(31, 2); in arc_gen_branch() local 50 u32 u_offset = target - pcl; in arc_gen_branch()
|
/kernel/linux/linux-6.6/arch/arc/kernel/ |
H A D | jump_label.c | 49 u32 pcl = pc & GENMASK(31, 2); in arc_gen_branch() local 50 u32 u_offset = target - pcl; in arc_gen_branch()
|
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | Makefile | 78 crc32c-intel-$(CONFIG_64BIT) += crc32c-pcl-intel-asm_64.o 84 crct10dif-pclmul-y := crct10dif-pcl-asm_64.o crct10dif-pclmul_glue.o
|
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | Makefile | 75 crc32c-intel-$(CONFIG_64BIT) += crc32c-pcl-intel-asm_64.o 81 crct10dif-pclmul-y := crct10dif-pcl-asm_64.o crct10dif-pclmul_glue.o
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | atafb.c | 1112 unsigned long pcl = ULONG_MAX; in falcon_decode_var() local 1116 f25.t * i < pcl) { in falcon_decode_var() 1117 pcl = f25.t * i; in falcon_decode_var() 1121 f32.t * i < pcl) { in falcon_decode_var() 1122 pcl = f32.t * i; in falcon_decode_var() 1126 fext.t * i < pcl) { in falcon_decode_var() 1127 pcl = fext.t * i; in falcon_decode_var() 1133 plen = pcl / pclock->t; in falcon_decode_var()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | atafb.c | 1093 unsigned long pcl = ULONG_MAX; in falcon_decode_var() local 1097 f25.t * i < pcl) { in falcon_decode_var() 1098 pcl = f25.t * i; in falcon_decode_var() 1102 f32.t * i < pcl) { in falcon_decode_var() 1103 pcl = f32.t * i; in falcon_decode_var() 1107 fext.t * i < pcl) { in falcon_decode_var() 1108 pcl = fext.t * i; in falcon_decode_var() 1114 plen = pcl / pclock->t; in falcon_decode_var()
|