diff options
author | Bin Lu <bin.lu@arm.com> | 2019-09-20 14:37:33 +0000 |
---|---|---|
committer | Bin Lu <bin.lu@arm.com> | 2019-10-23 03:32:50 +0000 |
commit | 345f140169dc59bfc73bc522f4877f1683b2558a (patch) | |
tree | dbf3dc11a5c8b5284ee1075c9f833f6ee923a915 /pkg/sentry/platform/kvm/physical_map_arm64.go | |
parent | e31686500db56a5fcd4070561643d702a94da0c3 (diff) |
Optimize kvm/physical_map.go on Arm platform
Signed-off-by: Bin Lu <bin.lu@arm.com>
Diffstat (limited to 'pkg/sentry/platform/kvm/physical_map_arm64.go')
-rw-r--r-- | pkg/sentry/platform/kvm/physical_map_arm64.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pkg/sentry/platform/kvm/physical_map_arm64.go b/pkg/sentry/platform/kvm/physical_map_arm64.go new file mode 100644 index 000000000..4d8561453 --- /dev/null +++ b/pkg/sentry/platform/kvm/physical_map_arm64.go @@ -0,0 +1,19 @@ +// Copyright 2019 The gVisor Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package kvm + +const ( + reservedMemory = 0 +) |