]> git.proxmox.com Git - mirror_qemu.git/commitdiff
linux-user: spelling fixes: othe, necesary
authorMichael Tokarev <mjt@tls.msk.ru>
Tue, 14 Nov 2023 16:07:15 +0000 (19:07 +0300)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 15 Nov 2023 08:09:17 +0000 (11:09 +0300)
Fixes: e34136d93059 "linux-user/ppc: Add vdso"
Fixes: 86f04735ac20 "linux-user: Fix brk() to release pages"
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
linux-user/ppc/vdso.S
linux-user/syscall.c

index 689010db13a397744123599389edc7ce95ea7b7b..2e79ea98086a123f8c88f4159ca7988b8acb67e6 100644 (file)
@@ -227,7 +227,7 @@ endf        __kernel_sigtramp_rt
 #ifndef _ARCH_PPC64
        /*
         * The non-rt sigreturn has the same layout at a different offset.
-        * Move the CFA and leave all othe other descriptions the same.
+        * Move the CFA and leave all the other descriptions the same.
         */
        .cfi_def_cfa    1, SIGNAL_FRAMESIZE + offsetof_sigframe_mcontext
        nop
index 65ac3ac796397004e59ff1d241e131b14cf36015..16ca5ea7b6ce68fb04a10b0f48fd3aa485b33207 100644 (file)
@@ -831,7 +831,7 @@ abi_long do_brk(abi_ulong brk_val)
         return target_brk;
     }
 
-    /* Release heap if necesary */
+    /* Release heap if necessary */
     if (new_brk < old_brk) {
         target_munmap(new_brk, old_brk - new_brk);