kata-containers/src/runtime/virtcontainers/hypervisor_linux_arm64.go
Samuel Ortiz 26b3f0017c virtcontainers: Split hypervisor into Linux and OS agnostic bits
Keep all the OS agnostic bits in the hypervisor.go and
hypervisor_ARCH.go files.

Fixes #3614

Signed-off-by: Eric Ernst <eric_ernst@apple.com>
Signed-off-by: Samuel Ortiz <s.ortiz@apple.com>
2022-02-16 19:15:31 +01:00

11 lines
234 B
Go

// Copyright (c) 2021 Arm Ltd.
//
// SPDX-License-Identifier: Apache-2.0
package virtcontainers
// Guest protection is not supported on ARM64.
func availableGuestProtection() (guestProtection, error) {
return noneProtection, nil
}