Lines Matching refs:vasid
575 * - We must have a valid vasid and it must belong to this instance.
583 int vasid, winid;
586 decode_pswid(pswid, &vasid, &winid);
588 if (vinst->vas_id != vasid)
851 struct vas_window *vas_rx_win_open(int vasid, enum vas_cop_type cop,
858 trace_vas_rx_win_open(current, vasid, cop, rxattr);
863 vinst = find_vas_instance(vasid);
865 pr_devel("vasid %d not found!\n", vasid);
868 pr_devel("Found instance %d\n", vasid);
992 struct vas_window *vas_tx_win_open(int vasid, enum vas_cop_type cop,
1001 trace_vas_tx_win_open(current, vasid, cop, attr);
1007 * If caller did not specify a vasid but specified the PSWID of a
1008 * receive window (applicable only to FTW windows), use the vasid
1011 if (vasid == -1 && attr->pswid)
1012 decode_pswid(attr->pswid, &vasid, NULL);
1014 vinst = find_vas_instance(vasid);
1016 pr_devel("vasid %d not found!\n", vasid);
1022 pr_devel("No RxWin for vasid %d, cop %d\n", vasid, cop);