Author: kib
Date: Sat Mar 28 09:02:19 2015
New Revision: 280780
URL: https://svnweb.freebsd.org/changeset/base/280780

Log:
  The #ss fault handler erronously does not check for the fault
  originated from the return to usermode. #ss must be handled same as
  #np.
  
  Reported by:  Andrew Lutomirski through secteam
  Sponsored by: The FreeBSD Foundation
  MFC after:    3 days

Modified:
  head/sys/amd64/amd64/trap.c

Modified: head/sys/amd64/amd64/trap.c
==============================================================================
--- head/sys/amd64/amd64/trap.c Sat Mar 28 06:54:18 2015        (r280779)
+++ head/sys/amd64/amd64/trap.c Sat Mar 28 09:02:19 2015        (r280780)
@@ -443,8 +443,6 @@ trap(struct trapframe *frame)
                        goto out;
 
                case T_STKFLT:          /* stack fault */
-                       break;
-
                case T_PROTFLT:         /* general protection fault */
                case T_SEGNPFLT:        /* segment not present fault */
                        if (td->td_intr_nesting_level != 0)
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to