// Copyright (c) 2017-2018 Intel Corporation // Copyright (c) 2018 Huawei Corporation // // SPDX-License-Identifier: Apache-2.0 // package manager import ( "path/filepath" "strings" "github.com/kata-containers/runtime/virtcontainers/device/config" ) const ( vfioPath = "/dev/vfio/" ) // isVFIO checks if the device provided is a vfio group. func isVFIO(hostPath string) bool { // Ignore /dev/vfio/vfio character device if strings.HasPrefix(hostPath, filepath.Join(vfioPath, "vfio")) { return false } if strings.HasPrefix(hostPath, vfioPath) && len(hostPath) > len(vfioPath) { return true } return false } // isBlock checks if the device is a block device. func isBlock(devInfo config.DeviceInfo) bool { if devInfo.DevType == "b" { return true } return false }