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); /* _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"