Searched refs:tt (Results 26 - 50 of 154) sorted by relevance

1234567

/linux-master/arch/um/drivers/
H A Dtty.c16 struct termios tt; member in struct:tty_chan
57 CATCH_EINTR(err = tcgetattr(fd, &data->tt));
H A Dpty.c22 struct termios tt; member in struct:pty_chan
55 CATCH_EINTR(err = tcgetattr(fd, &data->tt));
/linux-master/drivers/gpu/drm/ttm/tests/
H A Dttm_kunit_helpers.c12 struct ttm_tt *tt; local
14 tt = kzalloc(sizeof(*tt), GFP_KERNEL);
15 ttm_tt_init(tt, bo, page_flags, ttm_cached, 0);
17 return tt;
/linux-master/arch/um/os-Linux/
H A Dutil.c30 struct termios tt; local
33 CATCH_EINTR(err = tcgetattr(fd, &tt));
37 cfmakeraw(&tt);
39 CATCH_EINTR(err = tcsetattr(fd, TCSADRAIN, &tt));
/linux-master/drivers/scsi/libfc/
H A Dfc_elsct.c68 if (!lport->tt.elsct_send)
69 lport->tt.elsct_send = fc_elsct_send;
H A Dfc_disc.c359 if (lport->tt.elsct_send(lport, 0, fp,
653 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, FC_NS_GPN_ID,
716 if (!lport->tt.disc_start)
717 lport->tt.disc_start = fc_disc_start;
719 if (!lport->tt.disc_stop)
720 lport->tt.disc_stop = fc_disc_stop;
722 if (!lport->tt.disc_stop_final)
723 lport->tt.disc_stop_final = fc_disc_stop_final;
725 if (!lport->tt.disc_recv_req)
726 lport->tt
[all...]
/linux-master/lib/lzo/
H A Dlzo1x_compress.c130 size_t tt = t - 18; local
132 while (unlikely(tt > 255)) {
133 tt -= 255;
136 *op++ = tt;
351 size_t tt = t - 18; local
353 while (tt > 255) {
354 tt -= 255;
357 *op++ = tt;
/linux-master/include/linux/
H A Dsrcutiny.h84 char *tt, char *tf)
90 tt, tf, idx,
83 srcu_torture_stats_print(struct srcu_struct *ssp, char *tt, char *tf) argument
H A Dleds-lp3952.h101 u16 tt:3; member in struct:ptrn_gen_cmd::__anon743::__anon744
/linux-master/drivers/usb/host/
H A Dehci-sched.c103 struct usb_tt *utt = udev->tt;
104 struct ehci_tt *tt, **tt_index, **ptt; local
135 tt = *ptt;
136 if (!tt) { /* Create the ehci_tt */
140 tt = kzalloc(sizeof(*tt), GFP_ATOMIC);
141 if (!tt) {
148 list_add_tail(&tt->tt_list, &ehci->tt_list);
149 INIT_LIST_HEAD(&tt->ps_list);
150 tt
162 struct ehci_tt *tt, **tt_index, **ptt; local
214 struct ehci_tt *tt; local
267 compute_tt_budget(u8 budget_table[EHCI_BANDWIDTH_SIZE], struct ehci_tt *tt) argument
353 tt_available( struct ehci_hcd *ehci, struct ehci_per_sched *ps, struct ehci_tt *tt, unsigned frame, unsigned uframe ) argument
842 struct ehci_tt *tt; local
1310 struct ehci_tt *tt; local
1497 struct ehci_tt *tt = find_tt(stream->ps.udev); local
[all...]
/linux-master/tools/thermal/thermal-engine/
H A Dthermal-engine.c41 static int show_trip(struct thermal_trip *tt, __maybe_unused void *arg) argument
44 tt->id, tt->type, tt->temp, tt->hyst);
/linux-master/arch/sh/kernel/
H A Dtraps.c94 enum bug_trap_type tt; local
105 tt = report_bug(bugaddr, regs);
106 if (tt == BUG_TRAP_TYPE_WARN) {
/linux-master/drivers/scsi/elx/libefc/
H A Defclib.c69 efc->tt.hw_seq_free(efc, frame);
H A Defc_cmds.c79 rc = efc->tt.issue_mbox_rqst(efc->base, data,
139 rc = efc->tt.issue_mbox_rqst(efc->base, data,
197 rc = efc->tt.issue_mbox_rqst(efc->base, data,
285 rc = efc->tt.issue_mbox_rqst(efc->base, buf,
397 rc = efc->tt.issue_mbox_rqst(efc->base, data,
445 rc = efc->tt.issue_mbox_rqst(efc->base, data,
534 rc = efc->tt.issue_mbox_rqst(efc->base, buf,
580 rc = efc->tt.issue_mbox_rqst(efc->base, data,
681 rc = efc->tt.issue_mbox_rqst(efc->base, buf,
772 rc = efc->tt
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/lib/
H A Dfs_ttc.h70 u8 mlx5_get_proto_by_tunnel_type(enum mlx5_tunnel_types tt);
/linux-master/drivers/gpu/drm/nouveau/
H A Dnouveau_mem.c89 nouveau_mem_host(struct ttm_resource *reg, struct ttm_tt *tt) argument
112 if (tt->sg)
113 args.sgl = tt->sg->sgl;
115 args.dma = tt->dma_address;
/linux-master/drivers/thermal/
H A Dthermal_of.c127 struct thermal_trip *tt; local
144 tt = kzalloc(sizeof(*tt) * count, GFP_KERNEL);
145 if (!tt) {
154 ret = thermal_of_populate_trip(trip, &tt[count++]);
161 return tt;
164 kfree(tt);
/linux-master/drivers/gpu/drm/loongson/
H A Dlsdc_ttm.c86 static void lsdc_ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *tt) argument
88 ttm_tt_fini(tt);
89 kfree(tt);
95 struct ttm_tt *tt; local
98 tt = kzalloc(sizeof(*tt), GFP_KERNEL);
99 if (!tt)
102 ret = ttm_sg_tt_init(tt, tbo, page_flags, ttm_cached);
104 kfree(tt);
108 return tt;
[all...]
/linux-master/drivers/gpu/drm/
H A Ddrm_gem_vram_helper.c847 static void bo_driver_ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *tt) argument
849 ttm_tt_fini(tt);
850 kfree(tt);
860 struct ttm_tt *tt; local
863 tt = kzalloc(sizeof(*tt), GFP_KERNEL);
864 if (!tt)
867 ret = ttm_tt_init(tt, bo, page_flags, ttm_cached, 0);
871 return tt;
874 kfree(tt);
[all...]
/linux-master/arch/mips/kernel/
H A Dkgdb.c38 unsigned char tt; /* Trap type code for MIPS R3xxx and R4xxx */ member in struct:hard_trap_info
210 static int compute_signal(int tt) argument
214 for (ht = hard_trap_info; ht->tt && ht->signo; ht++)
215 if (ht->tt == tt)
/linux-master/drivers/gpu/drm/xe/
H A Dxe_bo.c273 static int xe_tt_map_sg(struct ttm_tt *tt) argument
275 struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
276 unsigned long num_pages = tt->num_pages;
279 XE_WARN_ON(tt->page_flags & TTM_TT_FLAG_EXTERNAL);
284 ret = sg_alloc_table_from_pages_segment(&xe_tt->sgt, tt->pages,
306 struct ttm_tt *tt = bo->ttm.ttm; local
307 struct xe_ttm_tt *xe_tt = container_of(tt, struct xe_ttm_tt, ttm);
317 struct xe_ttm_tt *tt; local
322 tt = kzalloc(sizeof(*tt), GFP_KERNE
363 xe_ttm_tt_populate(struct ttm_device *ttm_dev, struct ttm_tt *tt, struct ttm_operation_ctx *ctx) argument
387 xe_ttm_tt_unpopulate(struct ttm_device *ttm_dev, struct ttm_tt *tt) argument
404 xe_ttm_tt_destroy(struct ttm_device *ttm_dev, struct ttm_tt *tt) argument
[all...]
/linux-master/drivers/block/aoe/
H A Daoecmd.c252 struct aoetgt *t, **tt; local
261 tt = d->tgt; /* last used target */
263 tt++;
264 if (tt >= &d->targets[d->ntargets] || !*tt)
265 tt = d->targets;
266 t = *tt;
277 d->tgt = tt;
281 if (tt == d->tgt) { /* we've looped and found nada */
1415 struct aoetgt **tt; local
1434 struct aoetgt *t, **tt, **te; local
[all...]
H A Daoedev.c199 struct aoetgt *t, **tt, **te; local
216 tt = d->targets;
217 te = tt + d->ntargets;
218 for (; tt < te && (t = *tt); tt++) {
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_fs_ethtool.c432 int tt; local
439 tt = flow_type_to_traffic_type(flow_type);
440 if (tt < 0)
444 err = mlx5e_rss_obtain_tirn(rss, tt, &pkt_merge_param, false, tirn);
902 int tt; local
908 tt = flow_type_to_traffic_type(flow_type);
909 if (tt < 0)
910 return tt;
936 err = mlx5e_rx_res_rss_set_hash_fields(priv->rx_res, rss_idx, tt, rx_hash_field);
948 int tt; local
[all...]
/linux-master/drivers/gpu/drm/ttm/
H A Dttm_tt.c255 * ttm_tt_swapout - swap out tt object
430 iosys_map_set_vaddr(dmap, kmap_local_page_prot(iter_tt->tt->pages[i],
449 * @tt: Struct ttm_tt holding page pointers of the struct ttm_resource.
455 struct ttm_tt *tt)
458 iter_tt->tt = tt;
459 if (tt)
460 iter_tt->prot = ttm_prot_from_caching(tt->caching, PAGE_KERNEL);
454 ttm_kmap_iter_tt_init(struct ttm_kmap_iter_tt *iter_tt, struct ttm_tt *tt) argument

Completed in 317 milliseconds

1234567