mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-03-18 18:58:36 +00:00
`GuestProtection` feature is not made available yet, return `noneProtection` for now. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
11 lines
254 B
Go
11 lines
254 B
Go
// Copyright (c) 2024 Institute of Software, CAS.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package virtcontainers
|
|
|
|
// Guest protection is not available on RISC-V.
|
|
func availableGuestProtection() (guestProtection, error) {
|
|
return noneProtection, nil
|
|
}
|