Home
last modified time | relevance | path

Searched refs:cookie (Results 1 – 25 of 912) sorted by relevance

12345678910>>...37

/linux/fs/netfs/
H A Dfscache_cookie.c51 k = (cookie->key_len <= sizeof(cookie->inline_key)) ? in fscache_print_cookie()
52 cookie->inline_key : cookie->key; in fscache_print_cookie()
74 if (cookie->aux_len > sizeof(cookie->inline_aux)) in fscache_free_cookie()
76 if (cookie->key_len > sizeof(cookie->inline_key)) in fscache_free_cookie()
336 if (!cookie) in fscache_alloc_cookie()
351 if (cookie->aux_len <= sizeof(cookie->inline_aux)) { in fscache_alloc_cookie()
352 memcpy(cookie->inline_aux, aux_data, cookie->aux_len); in fscache_alloc_cookie()
497 cookie->volume->cache->ops->prepare_to_write(cookie); in fscache_prepare_to_write()
776 cookie->volume->cache->ops->withdraw_cookie(cookie); in fscache_cookie_state_machine()
1139 cookie->inline_key : cookie->key; in fscache_cookies_seq_show()
[all …]
H A Dfscache_io.c35 state = fscache_cookie_state(cookie); in fscache_wait_for_operation()
46 wait_var_event(&cookie->state, in fscache_wait_for_operation()
72 struct fscache_cookie *cookie, in fscache_begin_operation() argument
81 cres->cache_priv = cookie; in fscache_begin_operation()
83 cres->debug_id = cookie->debug_id; in fscache_begin_operation()
92 spin_lock(&cookie->lock); in fscache_begin_operation()
117 spin_unlock(&cookie->lock); in fscache_begin_operation()
123 spin_unlock(&cookie->lock); in fscache_begin_operation()
124 trace_fscache_access(cookie->debug_id, refcount_read(&cookie->ref), in fscache_begin_operation()
132 fscache_print_cookie(cookie, 'O'); in fscache_begin_operation()
[all …]
/linux/include/linux/
H A Dfscache.h25 #define fscache_cookie_valid(cookie) (cookie) argument
27 #define fscache_cookie_enabled(cookie) (cookie && !test_bit(FSCACHE_COOKIE_DISABLED, &cookie->flags… argument
32 #define fscache_cookie_valid(cookie) (0) argument
274 if (fscache_cookie_valid(cookie)) in fscache_use_cookie()
291 if (fscache_cookie_valid(cookie)) in fscache_unuse_cookie()
310 if (fscache_cookie_valid(cookie)) in fscache_relinquish_cookie()
319 if (cookie->aux_len <= sizeof(cookie->inline_aux)) in fscache_get_aux()
320 return cookie->inline_aux; in fscache_get_aux()
322 return cookie->aux; in fscache_get_aux()
332 void *p = fscache_get_aux(cookie); in fscache_update_aux()
[all …]
H A Dfscache-cache.h62 bool (*lookup_cookie)(struct fscache_cookie *cookie);
65 void (*withdraw_cookie)(struct fscache_cookie *cookie);
72 bool (*invalidate_cookie)(struct fscache_cookie *cookie);
79 void (*prepare_to_write)(struct fscache_cookie *cookie);
101 struct fscache_cookie *cookie,
106 extern void fscache_put_cookie(struct fscache_cookie *cookie,
112 extern void fscache_caching_failed(struct fscache_cookie *cookie);
126 return smp_load_acquire(&cookie->state); in fscache_cookie_state()
137 if (cookie->key_len <= sizeof(cookie->inline_key)) in fscache_get_key()
138 return cookie->inline_key; in fscache_get_key()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dexceptions.c147 return exception_cb_mod_global(cookie) + cookie + 10; in exception_cb_mod()
203 volatile u64 cookie = c; in assert_nz_gfunc() local
205 bpf_assert(cookie != 0); in assert_nz_gfunc()
211 volatile u64 cookie = c; in assert_zero_gfunc() local
219 volatile s64 cookie = c; in assert_neg_gfunc() local
253 bpf_assert_with(cookie != 0, cookie + 100); in assert_nz_gfunc_with()
261 bpf_assert_with(bpf_cmp_unlikely(cookie, ==, 0), cookie + 100); in assert_zero_gfunc_with()
269 bpf_assert_with(bpf_cmp_unlikely(cookie, <, 0), cookie + 100); in assert_neg_gfunc_with()
277 bpf_assert_with(bpf_cmp_unlikely(cookie, >, 0), cookie + 100); in assert_pos_gfunc_with()
285 bpf_assert_with(bpf_cmp_unlikely(cookie, <=, -1), cookie + 100); in assert_negeq_gfunc_with()
[all …]
H A Dnetns_cookie_prog.c34 int *cookie; in get_netns_cookie_sockops() local
45 cookie = bpf_sk_storage_get(&sockops_netns_cookies, sk, 0, in get_netns_cookie_sockops()
47 if (!cookie) in get_netns_cookie_sockops()
50 *cookie = bpf_get_netns_cookie(ctx); in get_netns_cookie_sockops()
66 int *cookie; in get_netns_cookie_sk_msg() local
74 cookie = bpf_sk_storage_get(&sk_msg_netns_cookies, sk, 0, in get_netns_cookie_sk_msg()
76 if (!cookie) in get_netns_cookie_sk_msg()
79 *cookie = bpf_get_netns_cookie(msg); in get_netns_cookie_sk_msg()
/linux/kernel/sched/
H A Dcore_sched.c40 return cookie; in sched_core_get_cookie()
54 unsigned long cookie) in sched_core_update_cookie() argument
74 p->core_cookie = cookie; in sched_core_update_cookie()
101 unsigned long cookie, flags; in sched_core_clone_cookie() local
107 return cookie; in sched_core_clone_cookie()
123 cookie = sched_core_get_cookie(cookie); in __sched_core_set()
124 cookie = sched_core_update_cookie(p, cookie); in __sched_core_set()
125 sched_core_put_cookie(cookie); in __sched_core_set()
177 if (cookie) { in sched_core_share_pid()
186 if (!cookie) { in sched_core_share_pid()
[all …]
/linux/include/trace/events/
H A Dfscache.h277 __entry->cookie,
308 __entry->cookie,
371 __entry->cookie,
400 __entry->cookie,
409 TP_ARGS(cookie),
419 __entry->cookie = cookie->debug_id;
426 __entry->cookie,
445 __entry->cookie = cookie->debug_id;
469 __entry->cookie = cookie->debug_id;
489 __entry->cookie = cookie->debug_id;
[all …]
/linux/fs/cachefiles/
H A Dinterface.c45 object->cookie = fscache_get_cookie(cookie, fscache_cookie_get_attach_object); in cachefiles_alloc_object()
99 object->cookie = NULL; in cachefiles_put_object()
122 ni_size = object->cookie->object_size; in cachefiles_adjust_size()
184 object = cachefiles_alloc_object(cookie); in cachefiles_lookup_cookie()
193 cookie->cache_priv = object; in cachefiles_lookup_cookie()
215 fscache_caching_failed(cookie); in cachefiles_lookup_cookie()
283 struct fscache_cookie *cookie = object->cookie; in cachefiles_resize_cookie() local
286 loff_t old_size = cookie->object_size; in cachefiles_resize_cookie()
294 object->cookie->object_size = new_size; in cachefiles_resize_cookie()
302 cookie->object_size = new_size; in cachefiles_resize_cookie()
[all …]
/linux/arch/arm64/kernel/
H A Dstacktrace.c162 void *cookie) in do_kunwind() argument
170 if (!consume_state(state, cookie)) in do_kunwind()
243 do_kunwind(&state, consume_state, cookie); in kunwind_stack_walk()
248 void *cookie; member
264 .cookie = cookie, in arch_stack_walk()
272 void *cookie; member
285 u64 fp), void *cookie) in arch_bpf_stack_walk()
289 .cookie = cookie, in arch_bpf_stack_walk()
361 if (!consume_entry(cookie, lr)) in unwind_user_frame()
407 if (!consume_entry(cookie, buftail.lr)) in unwind_compat_user_frame()
[all …]
/linux/drivers/dma/
H A Ddmaengine.h18 chan->cookie = DMA_MIN_COOKIE; in dma_cookie_init()
32 dma_cookie_t cookie; in dma_cookie_assign() local
34 cookie = chan->cookie + 1; in dma_cookie_assign()
35 if (cookie < DMA_MIN_COOKIE) in dma_cookie_assign()
36 cookie = DMA_MIN_COOKIE; in dma_cookie_assign()
37 tx->cookie = chan->cookie = cookie; in dma_cookie_assign()
39 return cookie; in dma_cookie_assign()
54 BUG_ON(tx->cookie < DMA_MIN_COOKIE); in dma_cookie_complete()
55 tx->chan->completed_cookie = tx->cookie; in dma_cookie_complete()
56 tx->cookie = 0; in dma_cookie_complete()
[all …]
/linux/drivers/iommu/
H A Ddma-iommu.c181 cookie->fq_domain->ops->flush_iotlb_all(cookie->fq_domain); in fq_flush_iotlb()
187 struct iommu_dma_cookie *cookie = from_timer(cookie, t, fq_timer); in fq_flush_timeout() local
194 fq_ring_free(cookie, cookie->single_fq); in fq_flush_timeout()
197 fq_ring_free(cookie, per_cpu_ptr(cookie->percpu_fq, cpu)); in fq_flush_timeout()
378 cookie = kzalloc(sizeof(*cookie), GFP_KERNEL); in cookie_alloc()
379 if (cookie) { in cookie_alloc()
383 return cookie; in cookie_alloc()
426 if (!cookie) in iommu_get_msi_cookie()
445 if (!cookie) in iommu_put_dma_cookie()
457 kfree(cookie); in iommu_put_dma_cookie()
[all …]
/linux/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_tc_matchall.c21 f->cookie, ingress, in lan966x_tc_matchall_add()
24 return lan966x_mirror_port_add(port, act, f->cookie, in lan966x_tc_matchall_add()
28 act->chain_index, f->cookie, in lan966x_tc_matchall_add()
43 if (f->cookie == port->tc.police_id) { in lan966x_tc_matchall_del()
44 return lan966x_police_port_del(port, f->cookie, in lan966x_tc_matchall_del()
46 } else if (f->cookie == port->tc.ingress_mirror_id || in lan966x_tc_matchall_del()
47 f->cookie == port->tc.egress_mirror_id) { in lan966x_tc_matchall_del()
51 return lan966x_goto_port_del(port, f->cookie, f->common.extack); in lan966x_tc_matchall_del()
61 if (f->cookie == port->tc.police_id) { in lan966x_tc_matchall_stats()
63 } else if (f->cookie == port->tc.ingress_mirror_id || in lan966x_tc_matchall_stats()
[all …]
/linux/fs/ocfs2/dlm/
H A Ddlmast.c267 __be64 cookie; in dlm_proxy_ast_handler() local
281 cookie = past->cookie; in dlm_proxy_ast_handler()
309 dlm_get_lock_cookie_node(be64_to_cpu(cookie)), in dlm_proxy_ast_handler()
310 dlm_get_lock_cookie_seq(be64_to_cpu(cookie)), in dlm_proxy_ast_handler()
321 dlm_get_lock_cookie_seq(be64_to_cpu(cookie)), in dlm_proxy_ast_handler()
348 if (lock->ml.cookie == cookie) in dlm_proxy_ast_handler()
360 if (lock->ml.cookie == cookie) { in dlm_proxy_ast_handler()
369 dlm_get_lock_cookie_node(be64_to_cpu(cookie)), in dlm_proxy_ast_handler()
370 dlm_get_lock_cookie_seq(be64_to_cpu(cookie)), in dlm_proxy_ast_handler()
386 dlm_get_lock_cookie_seq(be64_to_cpu(cookie)), in dlm_proxy_ast_handler()
[all …]
/linux/drivers/net/wireguard/
H A Dcookie.c69 void wg_cookie_init(struct cookie *cookie) in wg_cookie_init() argument
71 memset(cookie, 0, sizeof(*cookie)); in wg_cookie_init()
72 init_rwsem(&cookie->lock); in wg_cookie_init()
84 const u8 cookie[COOKIE_LEN]) in compute_mac2()
114 blake2s_final(&state, cookie); in make_cookie()
127 u8 cookie[COOKIE_LEN]; in wg_cookie_validate_packet() local
140 make_cookie(cookie, skb, checker); in wg_cookie_validate_packet()
186 u8 cookie[COOKIE_LEN]; in wg_cookie_message_create() local
192 make_cookie(cookie, skb, checker); in wg_cookie_message_create()
202 u8 cookie[COOKIE_LEN]; in wg_cookie_message_consume() local
[all …]
/linux/fs/lockd/
H A Dsvcxdr.h73 svcxdr_decode_cookie(struct xdr_stream *xdr, struct nlm_cookie *cookie) in svcxdr_decode_cookie() argument
88 cookie->len = len; in svcxdr_decode_cookie()
89 memcpy(cookie->data, p, len); in svcxdr_decode_cookie()
95 cookie->len = 4; in svcxdr_decode_cookie()
96 memset(cookie->data, 0, 4); in svcxdr_decode_cookie()
101 svcxdr_encode_cookie(struct xdr_stream *xdr, const struct nlm_cookie *cookie) in svcxdr_encode_cookie() argument
105 if (xdr_stream_encode_u32(xdr, cookie->len) < 0) in svcxdr_encode_cookie()
107 p = xdr_reserve_space(xdr, cookie->len); in svcxdr_encode_cookie()
110 memcpy(p, cookie->data, cookie->len); in svcxdr_encode_cookie()
/linux/arch/arm/mach-omap2/
H A Dpdata-quirks.c332 struct ti_sysc_cookie *cookie) in ti_sysc_clkdm_init() argument
336 if (cookie->clkdm) in ti_sysc_clkdm_init()
340 if (cookie->clkdm) in ti_sysc_clkdm_init()
349 if (cookie->clkdm) in ti_sysc_clkdm_deny_idle()
350 clkdm_deny_idle(cookie->clkdm); in ti_sysc_clkdm_deny_idle()
356 if (cookie->clkdm) in ti_sysc_clkdm_allow_idle()
357 clkdm_allow_idle(cookie->clkdm); in ti_sysc_clkdm_allow_idle()
364 if (!cookie->data) in ti_sysc_enable_module()
373 if (!cookie->data) in ti_sysc_idle_module()
376 return omap_hwmod_idle(cookie->data); in ti_sysc_idle_module()
[all …]
/linux/arch/s390/kernel/
H A Dstacktrace.c17 void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie, in arch_stack_walk() argument
25 if (!addr || !consume_entry(cookie, addr)) in arch_stack_walk()
31 void *cookie, struct task_struct *task) in arch_stack_walk_reliable() argument
56 if (!consume_entry(cookie, addr)) in arch_stack_walk_reliable()
66 static inline bool store_ip(stack_trace_consume_fn consume_entry, void *cookie, in store_ip() argument
77 return consume_entry(cookie, ip); in store_ip()
100 void arch_stack_walk_user_common(stack_trace_consume_fn consume_entry, void *cookie, in arch_stack_walk_user_common() argument
114 if (!store_ip(consume_entry, cookie, entry, perf, ip)) in arch_stack_walk_user_common()
153 if (!store_ip(consume_entry, cookie, entry, perf, ip)) in arch_stack_walk_user_common()
160 void arch_stack_walk_user(stack_trace_consume_fn consume_entry, void *cookie, in arch_stack_walk_user() argument
[all …]
/linux/drivers/clocksource/
H A Dtimer-ti-dm.c119 struct omap_dm_timer cookie; member
402 if (!cookie) in to_dmtimer()
405 return container_of(cookie, struct dmtimer, cookie); in to_dmtimer()
416 timer = to_dmtimer(cookie); in omap_dm_timer_set_source()
605 return &timer->cookie; in omap_dm_timer_request()
623 return &timer->cookie; in omap_dm_timer_request_specific()
644 return &timer->cookie; in omap_dm_timer_request_by_node()
653 timer = to_dmtimer(cookie); in omap_dm_timer_free()
749 timer = to_dmtimer(cookie); in omap_dm_timer_start()
773 timer = to_dmtimer(cookie); in omap_dm_timer_stop()
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dcustom_sec_handlers.c13 static int custom_setup_prog(struct bpf_program *prog, long cookie) in custom_setup_prog() argument
15 if (cookie == COOKIE_ABC1) in custom_setup_prog()
22 struct bpf_prog_load_opts *opts, long cookie) in custom_prepare_load_prog() argument
24 if (cookie == COOKIE_FALLBACK) in custom_prepare_load_prog()
26 else if (cookie == COOKIE_ABC1) in custom_prepare_load_prog()
35 switch (cookie) { in custom_attach_prog()
63 .cookie = COOKIE_ABC1, in register_sec_handlers()
69 .cookie = COOKIE_ABC2, in register_sec_handlers()
75 .cookie = COOKIE_CUSTOM, in register_sec_handlers()
112 opts.cookie = COOKIE_KPROBE; in test_custom_sec_handlers()
[all …]
H A Dbpf_cookie.c494 __u64 cookie; in tracing_subtest() local
505 link_opts.tracing.cookie = cookie; in tracing_subtest()
512 link_opts.tracing.cookie = cookie; in tracing_subtest()
519 link_opts.tracing.cookie = cookie; in tracing_subtest()
547 __u64 cookie; in lsm_subtest() local
557 link_opts.tracing.cookie = cookie; in lsm_subtest()
593 raw_tp_opts.cookie = cookie = 0x11000000000000L; in tp_btf_subtest()
607 link_opts.tracing.cookie = cookie = 0x22000000000000L; in tp_btf_subtest()
621 trace_opts.cookie = cookie = 0x33000000000000L; in tp_btf_subtest()
653 raw_tp_opts.cookie = cookie = 0x55000000000000L; in raw_tp_subtest()
[all …]
/linux/Documentation/filesystems/caching/
H A Dbackend-api.rst23 Cache cookie struct fscache_cache
24 Volume cookie struct fscache_volume
25 Data storage cookie struct fscache_cookie
67 This will look up and potentially create a cache cookie. The cache cookie may
69 that cache cookie will be used. If the cache cookie is not in use by another
78 to reset and discard the cookie.
111 on the cookie that each object belongs to. This schedules the specified cookie
229 Each cookie has an index key, which may be stored inline to the cookie or
315 struct fscache_cookie *cookie);
391 marked the cookie as in-use.
[all …]
H A Dnetfs-api.rst14 cookie.
32 (4) Declaring a cookie to be in use
70 Once it has a cookie, the filesystem needs to mark the cookie as being in use.
77 truncate the cookie locally. It *also* needs to use the cookie when the
124 pass a NULL cookie to any function that takes a volume cookie. This will
146 cookie for data storage::
174 volume cookie and pass the NULL cookie returned to any function that takes it.
231 The caller must have first marked the cookie in-use. The cookie and the new
243 struct fscache_cookie *cookie);
350 struct fscache_cookie *cookie);
[all …]
/linux/fs/xfs/scrub/
H A Dxfblob.c74 xfblob_cookie cookie, in xfblob_load() argument
81 error = xfile_load(blob->xfile, &key, sizeof(key), cookie); in xfblob_load()
85 if (key.xb_magic != XB_KEY_MAGIC || key.xb_offset != cookie) { in xfblob_load()
95 cookie + sizeof(key)); in xfblob_load()
102 xfblob_cookie *cookie, in xfblob_store() argument
123 *cookie = blob->last_offset; in xfblob_store()
135 xfblob_cookie cookie) in xfblob_free() argument
140 error = xfile_load(blob->xfile, &key, sizeof(key), cookie); in xfblob_free()
144 if (key.xb_magic != XB_KEY_MAGIC || key.xb_offset != cookie) { in xfblob_free()
149 xfile_discard(blob->xfile, cookie, sizeof(key) + key.xb_size); in xfblob_free()
H A Dxfblob.h18 int xfblob_load(struct xfblob *blob, xfblob_cookie cookie, void *ptr,
20 int xfblob_store(struct xfblob *blob, xfblob_cookie *cookie, const void *ptr,
22 int xfblob_free(struct xfblob *blob, xfblob_cookie cookie);
29 xfblob_cookie *cookie, in xfblob_storename() argument
32 return xfblob_store(blob, cookie, xname->name, xname->len); in xfblob_storename()
38 xfblob_cookie cookie, in xfblob_loadname() argument
42 int ret = xfblob_load(blob, cookie, (void *)xname->name, size); in xfblob_loadname()

12345678910>>...37