Lines Matching defs:path
454 VHOST_CONFIG_LOG("vduse", ERR, "Error creating VDUSE reconnect path name");
481 VHOST_CONFIG_LOG(dev->ifname, ERR, "Failed to initialize reconnect path");
487 VHOST_CONFIG_LOG(dev->ifname, ERR, "Failed to create vduse reconnect path name");
617 vduse_device_create(const char *path, bool compliant_ol_flags)
625 const char *name = path + strlen("/dev/vduse/");
631 VHOST_CONFIG_LOG(path, ERR, "failed to init VDUSE fdset");
650 ret = rte_vhost_driver_get_features(path, &features);
656 ret = rte_vhost_driver_get_queue_num(path, &max_queue_pairs);
662 VHOST_CONFIG_LOG(path, INFO, "VDUSE max queue pairs: %u", max_queue_pairs);
670 dev_fd = open(path, O_RDWR);
706 dev_fd = open(path, O_RDWR);
709 path, strerror(errno));
715 path, strerror(errno));
740 strncpy(dev->ifname, path, IF_NAME_SZ - 1);
820 vduse_device_destroy(const char *path)
822 const char *name = path + strlen("/dev/vduse/");
832 if (!strcmp(path, dev->ifname))
867 "Failed to create vduse reconnect path name");