Home
last modified time | relevance | path

Searched refs:snprintf_assert (Results 1 – 3 of 3) sorted by relevance

/linux/tools/testing/selftests/vfio/lib/
H A Dsysfs.c43 snprintf_assert(path, PATH_MAX, "/sys/bus/pci/%s/%s/%s", component, name, file); in sysfs_val_get_int()
64 snprintf_assert(path, PATH_MAX, "/sys/bus/pci/%s/%s/%s", component, name, file); in sysfs_val_set()
85 snprintf_assert(val_str, sizeof(val_str), "%d", val); in sysfs_device_val_set_int()
112 snprintf_assert(path, PATH_MAX, "/sys/bus/pci/devices/%s/virtfn%d", pf_bdf, i); in sysfs_sriov_vf_bdf_get()
123 snprintf_assert(path, PATH_MAX, "/sys/bus/pci/devices/%s/iommu_group", bdf); in sysfs_iommu_group_get()
136 snprintf_assert(path, PATH_MAX, "/sys/bus/pci/devices/%s/driver", bdf); in sysfs_driver_get()
H A Dvfio_pci_device.c294 snprintf_assert(group_path, sizeof(group_path), "/dev/vfio/%d", group); in vfio_pci_group_setup()
316 snprintf_assert(arg, ARRAY_SIZE(arg), "%s vf_token=%s", bdf, vf_token); in __vfio_pci_group_get_device_fd()
318 snprintf_assert(arg, ARRAY_SIZE(arg), "%s", bdf); in __vfio_pci_group_get_device_fd()
392 snprintf_assert(dir_path, sizeof(dir_path), "/sys/bus/pci/devices/%s/vfio-dev/", bdf); in vfio_pci_get_cdev_path()
402 snprintf_assert(cdev_path, PATH_MAX, "/dev/vfio/devices/%s", entry->d_name); in vfio_pci_get_cdev_path()
/linux/tools/testing/selftests/vfio/lib/include/libvfio/
H A Dassert.h72 #define snprintf_assert(_s, _size, _fmt, ...) do { \ macro