Lines Matching refs:txwin
563 struct vas_window *txwin; in nx842_exec_vas() local
586 txwin = this_cpu_read(cpu_txwin); in nx842_exec_vas()
598 ret = vas_paste_crb(txwin, 0, 1); in nx842_exec_vas()
683 struct vas_window *txwin = NULL; in nx_alloc_txwin() local
696 txwin = vas_tx_win_open(coproc->vas.id, coproc->ct, &txattr); in nx_alloc_txwin()
697 if (IS_ERR(txwin)) in nx_alloc_txwin()
699 PTR_ERR(txwin)); in nx_alloc_txwin()
701 return txwin; in nx_alloc_txwin()
716 struct vas_window *txwin = NULL; in nx_open_percpu_txwins() local
731 txwin = nx_alloc_txwin(coproc); in nx_open_percpu_txwins()
732 if (IS_ERR(txwin)) in nx_open_percpu_txwins()
733 return PTR_ERR(txwin); in nx_open_percpu_txwins()
735 per_cpu(cpu_txwin, i) = txwin; in nx_open_percpu_txwins()
995 struct vas_window *txwin; in nx_delete_coprocs() local
1002 txwin = per_cpu(cpu_txwin, i); in nx_delete_coprocs()
1003 if (txwin) in nx_delete_coprocs()
1004 vas_win_close(txwin); in nx_delete_coprocs()