Home
last modified time | relevance | path

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

123

/include/linux/
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 …]
A Dadreno-smmu-priv.h69 const void *cookie; member
70 const struct io_pgtable_cfg *(*get_ttbr1_cfg)(const void *cookie);
71 int (*set_ttbr0_cfg)(const void *cookie, const struct io_pgtable_cfg *cfg);
72 void (*get_fault_info)(const void *cookie, struct adreno_smmu_fault_info *info);
73 void (*set_stall)(const void *cookie, bool enabled);
74 void (*resume_translation)(const void *cookie, bool terminate);
75 void (*set_prr_bit)(const void *cookie, bool set);
76 void (*set_prr_addr)(const void *cookie, phys_addr_t page_addr);
A Dfscache-cache.h63 bool (*lookup_cookie)(struct fscache_cookie *cookie);
66 void (*withdraw_cookie)(struct fscache_cookie *cookie);
73 bool (*invalidate_cookie)(struct fscache_cookie *cookie);
80 void (*prepare_to_write)(struct fscache_cookie *cookie);
107 struct fscache_cookie *cookie,
112 extern void fscache_put_cookie(struct fscache_cookie *cookie,
118 extern void fscache_caching_failed(struct fscache_cookie *cookie);
132 return smp_load_acquire(&cookie->state); in fscache_cookie_state()
143 if (cookie->key_len <= sizeof(cookie->inline_key)) in fscache_get_key()
144 return cookie->inline_key; in fscache_get_key()
[all …]
A Dio-pgtable.h42 void (*tlb_flush_all)(void *cookie);
44 void *cookie);
46 unsigned long iova, size_t granule, void *cookie);
129 void *(*alloc)(void *cookie, size_t size, gfp_t gfp);
138 void (*free)(void *cookie, void *pages, size_t size);
239 void *cookie);
266 void *cookie; member
276 iop->cfg.tlb->tlb_flush_all(iop->cookie); in io_pgtable_tlb_flush_all()
284 iop->cfg.tlb->tlb_flush_walk(iova, size, granule, iop->cookie); in io_pgtable_tlb_flush_walk()
293 iop->cfg.tlb->tlb_add_page(gather, iova, granule, iop->cookie); in io_pgtable_tlb_add_page()
[all …]
A Dsock_diag.h38 u64 cookie; in sock_gen_cookie() local
41 cookie = __sock_gen_cookie(sk); in sock_gen_cookie()
44 return cookie; in sock_gen_cookie()
47 int sock_diag_check_cookie(struct sock *sk, const __u32 *cookie);
48 void sock_diag_save_cookie(struct sock *sk, __u32 *cookie);
A Dstacktrace.h21 typedef bool (*stack_trace_consume_fn)(void *cookie, unsigned long addr);
38 void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
58 int arch_stack_walk_reliable(stack_trace_consume_fn consume_entry, void *cookie,
61 void arch_stack_walk_user(stack_trace_consume_fn consume_entry, void *cookie,
A Dbacking-dev.h287 unlocked_inode_to_wb_begin(struct inode *inode, struct wb_lock_cookie *cookie) in unlocked_inode_to_wb_begin() argument
295 cookie->locked = smp_load_acquire(&inode->i_state) & I_WB_SWITCH; in unlocked_inode_to_wb_begin()
297 if (unlikely(cookie->locked)) in unlocked_inode_to_wb_begin()
298 xa_lock_irqsave(&inode->i_mapping->i_pages, cookie->flags); in unlocked_inode_to_wb_begin()
313 struct wb_lock_cookie *cookie) in unlocked_inode_to_wb_end() argument
315 if (unlikely(cookie->locked)) in unlocked_inode_to_wb_end()
316 xa_unlock_irqrestore(&inode->i_mapping->i_pages, cookie->flags); in unlocked_inode_to_wb_end()
353 unlocked_inode_to_wb_begin(struct inode *inode, struct wb_lock_cookie *cookie) in unlocked_inode_to_wb_begin() argument
359 struct wb_lock_cookie *cookie) in unlocked_inode_to_wb_end() argument
A Dasync.h17 typedef void (*async_func_t) (void *data, async_cookie_t cookie);
119 extern void async_synchronize_cookie(async_cookie_t cookie);
120 extern void async_synchronize_cookie_domain(async_cookie_t cookie,
A Dnetlink.h88 u8 cookie[NETLINK_MAX_COOKIE_LEN]; member
211 u64 cookie) in nl_set_extack_cookie_u64() argument
215 BUILD_BUG_ON(sizeof(extack->cookie) < sizeof(cookie)); in nl_set_extack_cookie_u64()
216 memcpy(extack->cookie, &cookie, sizeof(cookie)); in nl_set_extack_cookie_u64()
217 extack->cookie_len = sizeof(cookie); in nl_set_extack_cookie_u64()
A Dunwind_deferred.h11 …f void (*unwind_callback_t)(struct unwind_work *work, struct unwind_stacktrace *trace, u64 cookie);
39 int unwind_deferred_request(struct unwind_work *work, u64 *cookie);
A Ddmaengine.h25 static inline int dma_submit_error(dma_cookie_t cookie) in dma_submit_error() argument
27 return cookie < 0 ? cookie : 0; in dma_submit_error()
341 dma_cookie_t cookie; member
615 dma_cookie_t cookie; member
953 dma_cookie_t cookie,
1242 dma_cookie_t cookie, struct dma_tx_state *state) in dmaengine_tx_status() argument
1244 return chan->device->device_tx_status(chan, cookie, state); in dmaengine_tx_status()
1470 dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used) in dma_async_is_tx_complete() argument
1475 status = chan->device->device_tx_status(chan, cookie, &state); in dma_async_is_tx_complete()
1496 if ((cookie <= last_complete) || (cookie > last_used)) in dma_async_is_complete()
[all …]
/include/trace/events/
A Dfscache.h281 __entry->cookie,
312 __entry->cookie,
375 __entry->cookie,
404 __entry->cookie,
413 TP_ARGS(cookie),
423 __entry->cookie = cookie->debug_id;
430 __entry->cookie,
449 __entry->cookie = cookie->debug_id;
473 __entry->cookie = cookie->debug_id;
493 __entry->cookie = cookie->debug_id;
[all …]
A Dtegra_apb_dma.h11 TP_PROTO(struct dma_chan *dc, dma_cookie_t cookie, struct dma_tx_state *state),
12 TP_ARGS(dc, cookie, state),
15 __field(dma_cookie_t, cookie)
20 __entry->cookie = cookie;
24 __get_str(chan), __entry->cookie, __entry->residue)
/include/linux/soc/apple/
A Drtkit.h59 void (*crashed)(void *cookie, const void *crashlog, size_t crashlog_size);
60 void (*recv_message)(void *cookie, u8 endpoint, u64 message);
61 bool (*recv_message_early)(void *cookie, u8 endpoint, u64 message);
62 int (*shmem_setup)(void *cookie, struct apple_rtkit_shmem *bfr);
63 void (*shmem_destroy)(void *cookie, struct apple_rtkit_shmem *bfr);
78 struct apple_rtkit *devm_apple_rtkit_init(struct device *dev, void *cookie,
92 struct apple_rtkit *apple_rtkit_init(struct device *dev, void *cookie,
/include/linux/ceph/
A Dcls_lock_client.h15 char *cookie; /* locker's cookie */ member
30 char *lock_name, u8 type, char *cookie,
35 char *lock_name, char *cookie);
39 char *lock_name, char *cookie,
56 char *lock_name, u8 type, char *cookie, char *tag);
/include/linux/fsl/bestcomm/
A Dbestcomm.h54 void **cookie; member
187 bcom_submit_next_buffer(struct bcom_task *tsk, void *cookie) in bcom_submit_next_buffer() argument
191 tsk->cookie[tsk->index] = cookie; in bcom_submit_next_buffer()
202 void *cookie = tsk->cookie[tsk->outdex]; in bcom_retrieve_buffer() local
210 return cookie; in bcom_retrieve_buffer()
/include/linux/platform_data/
A Dti-sysc.h155 struct clk *ick, struct ti_sysc_cookie *cookie);
157 const struct ti_sysc_cookie *cookie);
159 const struct ti_sysc_cookie *cookie);
162 struct ti_sysc_cookie *cookie);
164 const struct ti_sysc_cookie *cookie);
166 const struct ti_sysc_cookie *cookie);
168 const struct ti_sysc_cookie *cookie);
/include/net/tc_act/
A Dtc_ct.h81 tcf_ct_flow_table_restore_skb(struct sk_buff *skb, unsigned long cookie) in tcf_ct_flow_table_restore_skb() argument
83 enum ip_conntrack_info ctinfo = cookie & NFCT_INFOMASK; in tcf_ct_flow_table_restore_skb()
86 ct = (struct nf_conn *)(cookie & NFCT_PTRMASK); in tcf_ct_flow_table_restore_skb()
92 tcf_ct_flow_table_restore_skb(struct sk_buff *skb, unsigned long cookie) { } in tcf_ct_flow_table_restore_skb() argument
/include/linux/qed/
A Dqed_ll2_if.h81 void *cookie; member
114 void *cookie,
121 void *cookie,
129 void *cookie,
143 void *cookie; member
173 void *cookie; member
253 void *cookie);
A Dqed_fcoe_if.h67 u32 (*get_login_failures)(void *cookie);
125 struct qed_fcoe_cb_ops *ops, void *cookie);
/include/uapi/linux/android/
A Dbinder.h88 binder_uintptr_t cookie; member
107 binder_uintptr_t cookie; member
206 binder_uintptr_t cookie; member
240 binder_uintptr_t cookie; member
311 binder_uintptr_t cookie; /* target object cookie */ member
348 binder_uintptr_t cookie; member
353 binder_uintptr_t cookie; member
364 binder_uintptr_t cookie; member
/include/uapi/linux/
A Dnbd.h89 __be64 cookie; /* Opaque identifier for request */ member
104 __be64 cookie; /* Opaque identifier from request */ member
A Dinotify.h24 __u32 cookie; /* cookie to synchronize two events */ member
/include/linux/sched/
A Ddeadline.h38 extern bool dl_bw_visited(int cpu, u64 cookie);
/include/linux/lockd/
A Dxdr.h66 struct nlm_cookie cookie; member
80 struct nlm_cookie cookie; member

Completed in 41 milliseconds

123