Home | History | Annotate | Download | only in vmt

Lines Matching defs:rpci

1081 	struct vm_rpc rpci;
1086 if (vm_rpc_open(&rpci, VM_RPC_OPEN_RPCI) != 0) {
1087 device_printf(sc->sc_dev, "rpci channel open failed\n");
1091 if (vm_rpc_send(&rpci, sc->sc_rpc_buf, length) != 0) {
1092 device_printf(sc->sc_dev, "unable to send rpci command\n");
1097 if (vm_rpc_get_length(&rpci, &rlen, &ack) != 0) {
1099 "failed to get length of rpci response data\n");
1109 if (vm_rpc_get_data(&rpci, sc->sc_rpc_buf, rlen, ack) != 0) {
1111 "failed to get rpci response data\n");
1118 if (vm_rpc_close(&rpci) != 0) {
1119 device_printf(sc->sc_dev, "unable to close rpci channel\n");
1137 "rpci command didn't fit in buffer\n");