summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/arch
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-05-16 03:10:09 +0000
committergVisor bot <gvisor-bot@google.com>2020-05-16 03:10:09 +0000
commitc91c8fb48be452a8b40b3ef406bd8b0022359399 (patch)
treeaf7d6820964c8f8fa680e5acbffebabb0c35c471 /pkg/sentry/arch
parent314aa01198a8aa1ceefde004b7ec4fbf86bdedc5 (diff)
parent420b791a3d6e0e6e2fc30c6f8be013bce7ca6549 (diff)
Merge release-20200511.0-251-g420b791 (automated)
Diffstat (limited to 'pkg/sentry/arch')
-rwxr-xr-xpkg/sentry/arch/syscalls_arm64.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/arch/syscalls_arm64.go b/pkg/sentry/arch/syscalls_arm64.go
index 92d062513..95dfd1e90 100755
--- a/pkg/sentry/arch/syscalls_arm64.go
+++ b/pkg/sentry/arch/syscalls_arm64.go
@@ -23,7 +23,7 @@ const restartSyscallNr = uintptr(128)
//
// In linux, at the entry of the syscall handler(el0_svc_common()), value of R0
// is saved to the pt_regs.orig_x0 in kernel code. But currently, the orig_x0
-// was not accessible to the user space application, so we have to do the same
+// was not accessible to the userspace application, so we have to do the same
// operation in the sentry code to save the R0 value into the App context.
func (c *context64) SyscallSaveOrig() {
c.OrigR0 = c.Regs.Regs[0]