svn commit: r310359 - stable/11/sys/amd64/amd64
Konstantin Belousov
kib at FreeBSD.org
Wed Dec 21 09:22:07 UTC 2016
Author: kib
Date: Wed Dec 21 09:22:06 2016
New Revision: 310359
URL: https://svnweb.freebsd.org/changeset/base/310359
Log:
MFC r310205:
Fix typo. Remove spurious blank line.
Modified:
stable/11/sys/amd64/amd64/trap.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/amd64/amd64/trap.c
==============================================================================
--- stable/11/sys/amd64/amd64/trap.c Wed Dec 21 09:18:53 2016 (r310358)
+++ stable/11/sys/amd64/amd64/trap.c Wed Dec 21 09:22:06 2016 (r310359)
@@ -914,7 +914,7 @@ amd64_syscall(struct thread *td, int tra
}
KASSERT(PCB_USER_FPU(td->td_pcb),
- ("System call %s returing with kernel FPU ctx leaked",
+ ("System call %s returning with kernel FPU ctx leaked",
syscallname(td->td_proc, sa.code)));
KASSERT(td->td_pcb->pcb_save == get_pcb_user_save_td(td),
("System call %s returning with mangled pcb_save",
@@ -923,7 +923,6 @@ amd64_syscall(struct thread *td, int tra
("System call %s returning with leaked invl_gen %lu",
syscallname(td->td_proc, sa.code), td->td_md.md_invl_gen.gen));
-
syscallret(td, error, &sa);
/*
More information about the svn-src-stable
mailing list