Searched refs:tl (Results 1 - 25 of 115) sorted by relevance

12345

/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_timeline.c40 struct intel_timeline *tl = local
41 container_of(active, typeof(*tl), active);
43 i915_vma_unpin(tl->hwsp_ggtt);
44 intel_timeline_put(tl);
49 struct intel_timeline *tl = local
50 container_of(active, typeof(*tl), active);
52 __i915_vma_pin(tl->hwsp_ggtt);
53 intel_timeline_get(tl);
171 struct intel_timeline *tl; local
173 tl
185 __intel_timeline_pin(struct intel_timeline *tl) argument
191 intel_timeline_pin(struct intel_timeline *tl, struct i915_gem_ww_ctx *ww) argument
223 intel_timeline_reset_seqno(const struct intel_timeline *tl) argument
234 intel_timeline_enter(struct intel_timeline *tl) argument
275 intel_timeline_exit(struct intel_timeline *tl) argument
299 timeline_advance(struct intel_timeline *tl) argument
308 __intel_timeline_get_seqno(struct intel_timeline *tl, u32 *seqno) argument
326 intel_timeline_get_seqno(struct intel_timeline *tl, struct i915_request *rq, u32 *seqno) argument
343 struct intel_timeline *tl; local
381 intel_timeline_unpin(struct intel_timeline *tl) argument
418 struct intel_timeline *tl, *tn; local
[all...]
H A Dintel_timeline.h45 static inline int __intel_timeline_sync_set(struct intel_timeline *tl, argument
48 return i915_syncmap_set(&tl->sync, context, seqno);
51 static inline int intel_timeline_sync_set(struct intel_timeline *tl, argument
54 return __intel_timeline_sync_set(tl, fence->context, fence->seqno);
57 static inline bool __intel_timeline_sync_is_later(struct intel_timeline *tl, argument
60 return i915_syncmap_is_later(&tl->sync, context, seqno);
63 static inline bool intel_timeline_sync_is_later(struct intel_timeline *tl, argument
66 return __intel_timeline_sync_is_later(tl, fence->context, fence->seqno);
69 void __intel_timeline_pin(struct intel_timeline *tl);
70 int intel_timeline_pin(struct intel_timeline *tl, struc
95 intel_timeline_is_last(const struct intel_timeline *tl, const struct i915_request *rq) argument
[all...]
H A Dintel_gt_requests.c17 static bool retire_requests(struct intel_timeline *tl) argument
21 list_for_each_entry_safe(rq, rn, &tl->requests, link)
26 return !i915_active_fence_isset(&tl->last_request);
64 struct intel_timeline *tl = xchg(&engine->retire, NULL); local
67 struct intel_timeline *next = xchg(&tl->retire, NULL);
77 if (mutex_trylock(&tl->mutex)) {
78 retire_requests(tl);
79 mutex_unlock(&tl->mutex);
81 intel_timeline_put(tl);
84 tl
88 add_retire(struct intel_engine_cs *engine, struct intel_timeline *tl) argument
112 intel_engine_add_retire(struct intel_engine_cs *engine, struct intel_timeline *tl) argument
137 struct intel_timeline *tl, *tn; local
[all...]
H A Dselftest_timeline.c27 static struct page *hwsp_page(struct intel_timeline *tl) argument
29 struct drm_i915_gem_object *obj = tl->hwsp_ggtt->obj;
35 static unsigned long hwsp_cacheline(struct intel_timeline *tl) argument
37 unsigned long address = (unsigned long)page_address(hwsp_page(tl));
39 return (address + offset_in_page(tl->hwsp_offset)) / TIMELINE_SEQNO_BYTES;
42 static int selftest_tl_pin(struct intel_timeline *tl) argument
49 err = i915_gem_object_lock(tl->hwsp_ggtt->obj, &ww);
51 err = intel_timeline_pin(tl, &ww);
79 struct intel_timeline *tl)
81 tl
77 __mock_hwsp_record(struct mock_hwsp_freelist *state, unsigned int idx, struct intel_timeline *tl) argument
93 struct intel_timeline *tl; local
204 __igt_sync(struct intel_timeline *tl, u64 ctx, const struct __igt_sync *p, const char *name) argument
246 struct intel_timeline tl; local
290 struct intel_timeline tl; local
485 checked_tl_write(struct intel_timeline *tl, struct intel_engine_cs *engine, u32 value) argument
553 struct intel_timeline *tl; local
582 struct intel_timeline *tl = timelines[n]; local
623 struct intel_timeline *tl; local
654 struct intel_timeline *tl = timelines[n]; local
674 struct intel_timeline *tl; local
828 setup_watcher(struct hwsp_watcher *w, struct intel_gt *gt, struct intel_timeline *tl) argument
943 retire_requests(struct intel_timeline *tl) argument
959 struct intel_timeline *tl = ce->timeline; local
988 struct intel_timeline *tl; local
1193 struct intel_timeline *tl = ce->timeline; local
1271 struct intel_timeline *tl; local
1369 struct intel_timeline *tl; local
[all...]
H A Dintel_gt_requests.h24 struct intel_timeline *tl);
H A Dintel_context.h251 struct intel_timeline *tl = ce->timeline; variable in typeref:struct:intel_timeline
255 err = mutex_lock_interruptible_nested(&tl->mutex, 0);
257 err = mutex_lock_interruptible_nested(&tl->mutex,
260 err = mutex_lock_interruptible(&tl->mutex);
264 return tl;
267 static inline void intel_context_timeline_unlock(struct intel_timeline *tl)
268 __releases(&tl->mutex)
270 mutex_unlock(&tl->mutex);
H A Dselftest_context.c17 struct intel_timeline *tl = i915_request_timeline(rq); local
21 intel_timeline_get(tl);
35 lockdep_unpin_lock(&tl->mutex, rq->cookie);
36 mutex_unlock(&tl->mutex);
39 intel_timeline_put(tl);
46 struct intel_timeline *tl = ce->timeline; local
49 mutex_lock(&tl->mutex);
54 if (list_empty(&tl->requests))
57 rq = list_last_entry(&tl->requests, typeof(*rq), link);
68 mutex_unlock(&tl
[all...]
H A Dmock_engine.c16 static int mock_timeline_pin(struct intel_timeline *tl) argument
20 if (WARN_ON(!i915_gem_object_trylock(tl->hwsp_ggtt->obj, NULL)))
23 err = intel_timeline_pin_map(tl);
24 i915_gem_object_unlock(tl->hwsp_ggtt->obj);
28 atomic_inc(&tl->pin_count);
32 static void mock_timeline_unpin(struct intel_timeline *tl) argument
34 GEM_BUG_ON(!atomic_read(&tl->pin_count));
35 atomic_dec(&tl->pin_count);
/linux-master/fs/smb/client/
H A Ddfs_cache.h55 dfs_cache_get_next_tgt(struct dfs_cache_tgt_list *tl, argument
58 if (!tl || !tl->tl_numtgts || list_empty(&tl->tl_list) ||
59 !it || list_is_last(&it->it_list, &tl->tl_list))
65 dfs_cache_get_tgt_iterator(struct dfs_cache_tgt_list *tl) argument
67 if (!tl)
69 return list_first_entry_or_null(&tl->tl_list,
74 static inline void dfs_cache_free_tgts(struct dfs_cache_tgt_list *tl) argument
78 if (!tl || !t
95 dfs_cache_get_nr_tgts(const struct dfs_cache_tgt_list *tl) argument
[all...]
H A Ddfs.h22 struct dfs_cache_tgt_list tl; member in struct:dfs_ref
40 #define ref_walk_tl(w) (&ref_walk_cur(w)->tl)
62 dfs_cache_free_tgts(&ref->tl);
93 tit = dfs_cache_get_tgt_iterator(&ref->tl);
95 tit = dfs_cache_get_next_tgt(&ref->tl, ref->tit);
129 struct dfs_info3_param *ref, struct dfs_cache_tgt_list *tl)
136 cifs_remap(cifs_sb), path, ref, tl);
128 dfs_get_referral(struct cifs_mount_ctx *mnt_ctx, const char *path, struct dfs_info3_param *ref, struct dfs_cache_tgt_list *tl) argument
H A Ddfs.c444 struct dfs_cache_tgt_list *tl)
454 tit = dfs_cache_get_tgt_iterator(tl);
461 for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) {
509 dfs_cache_free_tgts(tl);
513 list_replace_init(&ntl.tl_list, &tl->tl_list);
529 struct dfs_cache_tgt_list *tl)
537 rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, islink, tl);
548 dfs_cache_free_tgts(tl);
557 DFS_CACHE_TGT_LIST(tl);
607 dfs_cache_noreq_find(server->leaf_fullpath + 1, &ref, &tl)) {
442 __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, char *tree, bool islink, struct dfs_cache_tgt_list *tl) argument
527 tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, char *tree, bool islink, struct dfs_cache_tgt_list *tl) argument
[all...]
/linux-master/drivers/net/ethernet/netronome/nfp/
H A Dnfp_net_debugdump.c61 struct nfp_dump_tl_hdr tl; member in struct:nfp_dumpspec_csr
67 struct nfp_dump_tl_hdr tl; member in struct:nfp_dumpspec_rtsym
73 struct nfp_dump_tl_hdr tl; member in struct:nfp_dump_csr
81 struct nfp_dump_tl_hdr tl; member in struct:nfp_dump_rtsym
90 struct nfp_dump_tl_hdr tl; member in struct:nfp_dump_prolog
95 struct nfp_dump_tl_hdr tl; member in struct:nfp_dump_error
115 typedef int (*nfp_tlv_visit)(struct nfp_pf *pf, struct nfp_dump_tl *tl,
123 struct nfp_dump_tl *tl; local
128 while (remaining >= sizeof(*tl)) {
129 tl
254 nfp_add_tlv_size(struct nfp_pf *pf, struct nfp_dump_tl *tl, void *param) argument
334 struct nfp_dump_tl *tl = dump->p; local
663 nfp_dump_for_tlv(struct nfp_pf *pf, struct nfp_dump_tl *tl, void *param) argument
[all...]
/linux-master/drivers/isdn/mISDN/
H A Dfsm.c98 struct FsmTimer *ft = from_timer(ft, t, tl);
114 timer_setup(&ft->tl, FsmExpireTimer, 0);
126 del_timer(&ft->tl);
141 if (timer_pending(&ft->tl)) {
152 ft->tl.expires = jiffies + (millisec * HZ) / 1000;
153 add_timer(&ft->tl);
169 if (timer_pending(&ft->tl))
170 del_timer(&ft->tl);
173 ft->tl.expires = jiffies + (millisec * HZ) / 1000;
174 add_timer(&ft->tl);
[all...]
H A Dfsm.h44 struct timer_list tl; member in struct:FsmTimer
H A Dtimerdev.c39 struct timer_list tl; member in struct:mISDNtimer
77 timer_shutdown_sync(&timer->tl);
158 struct mISDNtimer *timer = from_timer(timer, t, tl);
183 timer_setup(&timer->tl, dev_expire_timer, 0);
189 timer->tl.expires = jiffies + ((HZ * (u_long)timeout) / 1000);
190 add_timer(&timer->tl);
207 timer_shutdown_sync(&timer->tl);
/linux-master/drivers/s390/net/
H A Dfsm.c135 fsm_timer *this = from_timer(this, t, tl);
151 timer_setup(&this->tl, fsm_expire_timer, 0);
161 del_timer(&this->tl);
173 timer_setup(&this->tl, fsm_expire_timer, 0);
176 this->tl.expires = jiffies + (millisec * HZ) / 1000;
177 add_timer(&this->tl);
191 del_timer(&this->tl);
192 timer_setup(&this->tl, fsm_expire_timer, 0);
195 this->tl.expires = jiffies + (millisec * HZ) / 1000;
196 add_timer(&this->tl);
[all...]
/linux-master/crypto/
H A Dvmac.c151 int i; u64 th, tl; \
154 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
156 ADD128(rh, rl, th, tl); \
162 int i; u64 th, tl; \
165 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
167 ADD128(rh, rl, th, tl); \
168 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i+2], \
170 ADD128(rh1, rl1, th, tl); \
177 int i; u64 th, tl; \
180 MUL64(th, tl, pe64_to_cpu
[all...]
/linux-master/drivers/gpu/drm/i915/pxp/
H A Dintel_pxp_cmd.c86 struct intel_timeline * const tl = i915_request_timeline(rq); local
88 lockdep_unpin_lock(&tl->mutex, rq->cookie);
94 mutex_unlock(&tl->mutex);
/linux-master/drivers/gpu/drm/i915/
H A Di915_request.c420 struct intel_timeline * const tl = i915_request_timeline(rq); local
427 tmp = list_first_entry(&tl->requests, typeof(*tmp), link);
824 static void retire_requests(struct intel_timeline *tl) argument
828 list_for_each_entry_safe(rq, rn, &tl->requests, link)
834 request_alloc_slow(struct intel_timeline *tl, argument
849 if (list_empty(&tl->requests))
853 rq = list_first_entry(&tl->requests, typeof(*rq), link);
862 rq = list_last_entry(&tl->requests, typeof(*rq), link);
866 retire_requests(tl);
896 struct intel_timeline *tl local
1031 struct intel_timeline *tl; local
1248 intel_timeline_sync_has_start(struct intel_timeline *tl, struct dma_fence *fence) argument
1256 intel_timeline_sync_set_start(struct intel_timeline *tl, const struct dma_fence *fence) argument
1846 struct intel_timeline * const tl = i915_request_timeline(rq); local
[all...]
/linux-master/fs/ext4/
H A Dfast_commit.c691 struct ext4_fc_tl tl; local
729 tl.fc_tag = cpu_to_le16(EXT4_FC_TAG_PAD);
730 tl.fc_len = cpu_to_le16(remaining);
731 memcpy(dst, &tl, EXT4_FC_TAG_BASE_LEN);
756 struct ext4_fc_tl tl; local
771 tl.fc_tag = cpu_to_le16(EXT4_FC_TAG_TAIL);
772 tl.fc_len = cpu_to_le16(bsize - off + sizeof(struct ext4_fc_tail));
775 memcpy(dst, &tl, EXT4_FC_TAG_BASE_LEN);
799 struct ext4_fc_tl tl; local
806 tl
820 struct ext4_fc_tl tl; local
852 struct ext4_fc_tl tl; local
1341 tl_to_darg(struct dentry_info_args *darg, struct ext4_fc_tl_mem *tl, u8 *val) argument
1354 ext4_fc_get_tl(struct ext4_fc_tl_mem *tl, u8 *val) argument
1364 ext4_fc_replay_unlink(struct super_block *sb, struct ext4_fc_tl_mem *tl, u8 *val) argument
1462 ext4_fc_replay_link(struct super_block *sb, struct ext4_fc_tl_mem *tl, u8 *val) argument
1517 ext4_fc_replay_inode(struct super_block *sb, struct ext4_fc_tl_mem *tl, u8 *val) argument
1620 ext4_fc_replay_create(struct super_block *sb, struct ext4_fc_tl_mem *tl, u8 *val) argument
1718 ext4_fc_replay_add_range(struct super_block *sb, struct ext4_fc_tl_mem *tl, u8 *val) argument
1839 ext4_fc_replay_del_range(struct super_block *sb, struct ext4_fc_tl_mem *tl, u8 *val) argument
2036 struct ext4_fc_tl_mem tl; local
2155 struct ext4_fc_tl_mem tl; local
[all...]
/linux-master/kernel/sched/
H A Dtopology.c1580 sd_init(struct sched_domain_topology_level *tl, argument
1584 struct sd_data *sdd = &tl->data;
1593 sched_domains_curr_level = tl->numa_level;
1596 sd_weight = cpumask_weight(tl->mask(cpu));
1598 if (tl->sd_flags)
1599 sd_flags = (*tl->sd_flags)();
1631 .name = tl->name,
1636 cpumask_and(sd_span, cpu_map, tl->mask(cpu));
1665 if (sched_domains_numa_distance[tl->numa_level] > node_reclaim_distance) {
1714 #define for_each_sd_topology(tl) \
1717 set_sched_topology(struct sched_domain_topology_level *tl) argument
1848 struct sched_domain_topology_level *tl; local
2216 struct sched_domain_topology_level *tl; local
2285 struct sched_domain_topology_level *tl; local
2319 build_sched_domain(struct sched_domain_topology_level *tl, const struct cpumask *cpu_map, struct sched_domain_attr *attr, struct sched_domain *child, int cpu) argument
2353 topology_span_sane(struct sched_domain_topology_level *tl, const struct cpumask *cpu_map, int cpu) argument
2407 struct sched_domain_topology_level *tl; local
[all...]
/linux-master/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_vfpf.h99 struct channel_tlv tl; member in struct:vfpf_first_tlv
105 struct channel_tlv tl; member in struct:pfvf_tlv
117 struct channel_tlv tl; member in struct:channel_list_end_tlv
213 struct channel_tlv tl; member in struct:vfpf_port_phys_id_resp_tlv
219 struct channel_tlv tl; member in struct:vfpf_fp_hsi_resp_tlv
/linux-master/drivers/net/ethernet/qlogic/qed/
H A Dqed_vf.h55 struct channel_tlv tl; member in struct:vfpf_first_tlv
62 struct channel_tlv tl; member in struct:pfvf_tlv
74 struct channel_tlv tl; member in struct:channel_list_end_tlv
123 struct channel_tlv tl; member in struct:vfpf_vport_update_rss_tlv
232 struct channel_tlv tl; member in struct:vfpf_qid_tlv
345 struct channel_tlv tl; member in struct:vfpf_vport_update_activate_tlv
353 struct channel_tlv tl; member in struct:vfpf_vport_update_tx_switch_tlv
359 struct channel_tlv tl; member in struct:vfpf_vport_update_vlan_strip_tlv
365 struct channel_tlv tl; member in struct:vfpf_vport_update_mcast_bin_tlv
377 struct channel_tlv tl; member in struct:vfpf_vport_update_accept_param_tlv
385 struct channel_tlv tl; member in struct:vfpf_vport_update_accept_any_vlan_tlv
393 struct channel_tlv tl; member in struct:vfpf_vport_update_sge_tpa_tlv
[all...]
/linux-master/arch/sparc/kernel/
H A Ddtlb_prot.S23 rdpr %tl, %g1 ! Need a winfixup?
/linux-master/lib/
H A Dinflate.c590 struct huft *tl, /* literal/length decoder tables */
592 int bl, /* number of bits decoded by tl[] */
618 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16)
771 struct huft *tl; /* literal/length code table */ local
773 int bl; /* lookup bits for tl */
793 if ((i = huft_build(l, 288, 257, cplens, cplext, &tl, &bl)) != 0) {
804 huft_free(tl);
813 if (inflate_codes(tl, td, bl, bd)) {
820 huft_free(tl);
837 struct huft *tl; /* litera local
589 inflate_codes( struct huft *tl, struct huft *td, int bl, int bd ) argument
1018 huft_free(tl); variable
[all...]

Completed in 437 milliseconds

12345