/linux/fs/squashfs/ |
A D | page_actor.c | 24 actor->next_page = 1; in cache_first_page() 30 if (actor->next_page == actor->pages) in cache_next_page() 33 return actor->buffer[actor->next_page++]; in cache_next_page() 44 struct squashfs_page_actor *actor = kmalloc(sizeof(*actor), GFP_KERNEL); in squashfs_page_actor_init() local 46 if (actor == NULL) in squashfs_page_actor_init() 56 return actor; in squashfs_page_actor_init() 63 return actor->pageaddr = kmap_atomic(actor->page[0]); in direct_first_page() 71 return actor->pageaddr = actor->next_page == actor->pages ? NULL : in direct_next_page() 72 kmap_atomic(actor->page[actor->next_page++]); in direct_next_page() 86 if (actor == NULL) in squashfs_page_actor_init_special() [all …]
|
A D | page_actor.h | 20 struct squashfs_page_actor *actor = kmalloc(sizeof(*actor), GFP_KERNEL); in squashfs_page_actor_init() local 22 if (actor == NULL) in squashfs_page_actor_init() 26 actor->page = page; in squashfs_page_actor_init() 27 actor->pages = pages; in squashfs_page_actor_init() 28 actor->next_page = 0; in squashfs_page_actor_init() 29 return actor; in squashfs_page_actor_init() 40 return actor->next_page == actor->pages ? NULL : in squashfs_next_page() 41 actor->page[actor->next_page++]; in squashfs_next_page() 68 return actor->squashfs_first_page(actor); in squashfs_first_page() 72 return actor->squashfs_next_page(actor); in squashfs_next_page() [all …]
|
A D | decompressor.c | 92 struct squashfs_page_actor *actor = NULL; in get_comp_opts() local 105 actor = squashfs_page_actor_init(&buffer, 1, 0); in get_comp_opts() 106 if (actor == NULL) { in get_comp_opts() 112 sizeof(struct squashfs_super_block), 0, NULL, actor); in get_comp_opts() 123 kfree(actor); in get_comp_opts()
|
A D | file_direct.c | 38 struct squashfs_page_actor *actor; in squashfs_readpage_block() local 54 actor = squashfs_page_actor_init_special(page, pages, 0); in squashfs_readpage_block() 55 if (actor == NULL) in squashfs_readpage_block() 93 res = squashfs_read_data(inode->i_sb, block, bsize, NULL, actor); in squashfs_readpage_block() 119 kfree(actor); in squashfs_readpage_block() 138 kfree(actor); in squashfs_readpage_block()
|
A D | cache.c | 111 &entry->next_index, entry->actor); in squashfs_cache_get() 210 kfree(cache->entry[i].actor); in squashfs_cache_delete() 272 entry->actor = squashfs_page_actor_init(entry->data, in squashfs_cache_init() 274 if (entry->actor == NULL) { in squashfs_cache_init() 411 struct squashfs_page_actor *actor; in squashfs_read_table() local 423 actor = squashfs_page_actor_init(data, pages, length); in squashfs_read_table() 424 if (actor == NULL) { in squashfs_read_table() 433 SQUASHFS_COMPRESSED_BIT_BLOCK, NULL, actor); in squashfs_read_table() 436 kfree(actor); in squashfs_read_table()
|
A D | block.c | 34 struct squashfs_page_actor *actor, in copy_bio_to_actor() argument 37 void *actor_addr = squashfs_first_page(actor); in copy_bio_to_actor() 60 actor_addr = squashfs_next_page(actor); in copy_bio_to_actor() 71 squashfs_finish_page(actor); in copy_bio_to_actor()
|
A D | squashfs_fs_sb.h | 40 struct squashfs_page_actor *actor; member
|
/linux/net/sunrpc/xprtrdma/ |
A D | svc_rdma_pcl.c | 234 int (*actor)(const struct xdr_buf *, void *), in pcl_process_region() 243 return actor(&subbuf, data); in pcl_process_region() 267 int (*actor)(const struct xdr_buf *, void *), in pcl_process_nonpayloads() 278 return actor(xdr, data); in pcl_process_nonpayloads() 281 ret = pcl_process_region(xdr, 0, chunk->ch_position, actor, data); in pcl_process_nonpayloads() 292 actor, data); in pcl_process_nonpayloads() 301 ret = pcl_process_region(xdr, start, xdr->len - start, actor, data); in pcl_process_nonpayloads()
|
/linux/fs/ntfs/ |
A D | dir.c | 1014 u8 *name, struct dir_context *actor) in ntfs_filldir() argument 1106 vdir->i_ino, actor->pos); in ntfs_readdir() 1110 if (actor->pos >= i_size + vol->mft_record_size) in ntfs_readdir() 1113 if (!dir_emit_dots(file, actor)) in ntfs_readdir() 1127 if (actor->pos >= vol->mft_record_size) in ntfs_readdir() 1142 ir_pos = (s64)actor->pos; in ntfs_readdir() 1198 actor->pos = (u8*)ie - (u8*)ir; in ntfs_readdir() 1213 actor->pos = vol->mft_record_size; in ntfs_readdir() 1218 ia_pos = (s64)actor->pos - vol->mft_record_size; in ntfs_readdir() 1380 actor->pos = (u8*)ie - (u8*)ia + in ntfs_readdir() [all …]
|
/linux/fs/ksmbd/ |
A D | vfs_cache.h | 115 filldir_t actor) in set_ctx_actor() argument 117 ctx->actor = actor; in set_ctx_actor()
|
/linux/fs/ |
A D | readdir.c | 186 .ctx.actor = fillonedir, in SYSCALL_DEFINE3() 276 .ctx.actor = filldir, in SYSCALL_DEFINE3() 359 .ctx.actor = filldir64, in SYSCALL_DEFINE3() 444 .ctx.actor = compat_fillonedir, in COMPAT_SYSCALL_DEFINE3() 527 .ctx.actor = compat_filldir, in COMPAT_SYSCALL_DEFINE3()
|
A D | splice.c | 397 splice_actor *actor) in splice_from_pipe_feed() argument 418 ret = actor(pipe, buf, sd); in splice_from_pipe_feed() 553 splice_actor *actor) in __splice_from_pipe() argument 562 ret = splice_from_pipe_feed(pipe, sd, actor); in __splice_from_pipe() 586 splice_actor *actor) in splice_from_pipe() argument 597 ret = __splice_from_pipe(pipe, &sd, actor); in splice_from_pipe() 813 splice_direct_actor *actor) in splice_direct_to_actor() argument 891 ret = actor(pipe, sd); in splice_direct_to_actor()
|
/linux/fs/overlayfs/ |
A D | readdir.c | 349 .ctx.actor = ovl_fill_merge, in ovl_dir_read_merged() 557 .ctx.actor = ovl_fill_plain, in ovl_dir_read_impure() 672 return orig_ctx->actor(orig_ctx, name, namelen, offset, ino, d_type); in ovl_fill_real() 697 .ctx.actor = ovl_fill_real, in ovl_iterate_real() 1054 .ctx.actor = ovl_check_d_type, in ovl_check_d_type_supported() 1075 .ctx.actor = ovl_fill_merge, in ovl_workdir_cleanup_recurse() 1163 .ctx.actor = ovl_fill_merge, in ovl_indexdir_cleanup()
|
/linux/security/keys/ |
A D | request_key.c | 227 request_key_actor_t actor; in construct_key() local 240 actor = call_sbin_request_key; in construct_key() 242 actor = key->type->request_key; in construct_key() 244 ret = actor(authkey, aux); in construct_key()
|
/linux/arch/powerpc/platforms/powermac/ |
A D | pfunc_core.c | 811 struct device_node *actor = of_node_get(target); in __pmf_find_function() local 834 of_node_put(actor); in __pmf_find_function() 835 actor = of_find_node_by_phandle(ph); in __pmf_find_function() 836 if (actor == NULL) in __pmf_find_function() 839 dev = pmf_find_device(actor); in __pmf_find_function() 857 of_node_put(actor); in __pmf_find_function()
|
/linux/include/linux/sunrpc/ |
A D | svc_rdma_pcl.h | 124 int (*actor)(const struct xdr_buf *,
|
/linux/Documentation/admin-guide/hw-vuln/ |
A D | tsx_async_abort.rst | 61 The victim of a malicious actor does not need to make use of TSX. Only the 77 a result, the malicious actor has to sample as much data as possible and 262 might allow a malicious actor to leak data from the host or from other
|
/linux/fs/gfs2/ |
A D | export.c | 92 .ctx.actor = get_name_filldir, in gfs2_get_name()
|
/linux/net/ethtool/ |
A D | ioctl.c | 2156 u32 cmd, u32 (*actor)(struct net_device *)) in ethtool_get_value() 2160 if (!actor) in ethtool_get_value() 2163 edata.data = actor(dev); in ethtool_get_value() 2171 void (*actor)(struct net_device *, u32)) in ethtool_set_value_void() 2175 if (!actor) in ethtool_set_value_void() 2181 actor(dev, edata.data); in ethtool_set_value_void() 2186 int (*actor)(struct net_device *, u32)) in ethtool_set_value() 2190 if (!actor) in ethtool_set_value() 2196 return actor(dev, edata.data); in ethtool_set_value()
|
/linux/fs/xfs/scrub/ |
A D | parent.c | 76 .dc.actor = xchk_parent_actor, in xchk_parent_count_parent_dentries()
|
/linux/Documentation/driver-api/thermal/ |
A D | power_allocator.rst | 42 | | | tdp actor 223 maximum power that an actor can consume.
|
/linux/fs/ecryptfs/ |
A D | file.c | 107 .ctx.actor = ecryptfs_filldir, in ecryptfs_readdir()
|
/linux/fs/reiserfs/ |
A D | xattr.c | 245 .ctx.actor = fill_with_dentries, in reiserfs_for_each_xattr() 850 .ctx.actor = listxattr_filler, in reiserfs_listxattr()
|
/linux/fs/afs/ |
A D | dir.c | 471 (ctx->actor == afs_lookup_filldir || in afs_dir_iterate_block() 472 ctx->actor == afs_lookup_one_filldir)? in afs_dir_iterate_block() 605 .ctx.actor = afs_lookup_one_filldir, in afs_do_lookup_one() 801 cookie->ctx.actor = afs_lookup_filldir; in afs_do_lookup()
|
/linux/net/sunrpc/ |
A D | xdr.c | 2017 int (*actor)(struct scatterlist *, void *), void *data) in xdr_process_buf() 2032 ret = actor(sg, data); in xdr_process_buf() 2055 ret = actor(sg, data); in xdr_process_buf() 2072 ret = actor(sg, data); in xdr_process_buf()
|