mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
a96a5d7816
Use the new vfio-ioctls APIs. Drop Cloud Hypervisor's Device trait since it is no longer needed. Signed-off-by: Wei Liu <liuwe@microsoft.com>
29 lines
642 B
Rust
29 lines
642 B
Rust
// Copyright © 2019 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
|
|
//
|
|
// Copyright © 2020, Microsoft Corporation
|
|
//
|
|
// Copyright 2018-2019 CrowdStrike, Inc.
|
|
//
|
|
// Copyright 2020, ARM Limited
|
|
//
|
|
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
///
|
|
/// Enum for device error
|
|
pub enum HypervisorDeviceError {
|
|
///
|
|
/// Set device attribute error
|
|
///
|
|
#[error("Failed to set device attribute: {0}")]
|
|
SetDeviceAttribute(#[source] anyhow::Error),
|
|
///
|
|
/// Get device attribute error
|
|
///
|
|
#[error("Failed to get device attribute: {0}")]
|
|
GetDeviceAttribute(#[source] anyhow::Error),
|
|
}
|