svn commit: r310205 - head/sys/amd64/amd64
Konstantin Belousov
kib at FreeBSD.org
Sun Dec 18 09:32:24 UTC 2016
Author: kib
Date: Sun Dec 18 09:32:23 2016
New Revision: 310205
URL: https://svnweb.freebsd.org/changeset/base/310205
Log:
Fix typo. Remove spurious blank line.
MFC after: 3 days
Modified:
head/sys/amd64/amd64/trap.c
Modified: head/sys/amd64/amd64/trap.c
==============================================================================
--- head/sys/amd64/amd64/trap.c Sun Dec 18 08:31:01 2016 (r310204)
+++ head/sys/amd64/amd64/trap.c Sun Dec 18 09:32:23 2016 (r310205)
@@ -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-all
mailing list