Date: Thu, 11 Apr 2024 17:34:46 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 33afe704bf17 - main - sigtramp: Fix typo Message-ID: <202404111734.43BHYkPt069946@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=33afe704bf1797b3720c4d45e7a8dcf1f0794110 commit 33afe704bf1797b3720c4d45e7a8dcf1f0794110 Author: Elyes Haouas <ehaouas@noos.fr> AuthorDate: 2024-04-11 17:27:29 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-04-11 17:28:27 +0000 sigtramp: Fix typo Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/885 --- sys/amd64/amd64/sigtramp.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/amd64/sigtramp.S b/sys/amd64/amd64/sigtramp.S index 3ab9e32ca520..4676d5f67650 100644 --- a/sys/amd64/amd64/sigtramp.S +++ b/sys/amd64/amd64/sigtramp.S @@ -91,7 +91,7 @@ ENTRY(__vdso_sigcode) .cfi_def_cfa %rsp, 8 movq $SYS_sigreturn,%rax syscall /* enter kernel with args */ -0: hlt /* trap priviliged instruction */ +0: hlt /* trap privileged instruction */ jmp 0b .cfi_endproc END(__vdso_sigcode)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404111734.43BHYkPt069946>