Author: jhb
Date: Thu Sep 10 20:34:44 2020
New Revision: 365611
URL: https://svnweb.freebsd.org/changeset/base/365611

Log:
  MFC 363459:
  Pass the right size to memcpy() when copying the array of FP registers.
  
  The size of the containing structure was passed instead of the size of
  the array.  This happened to be harmless as the extra word copied is
  one we copy in the next line anyway.

Modified:
  stable/12/sys/riscv/riscv/machdep.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/riscv/riscv/machdep.c
==============================================================================
--- stable/12/sys/riscv/riscv/machdep.c Thu Sep 10 20:28:43 2020        
(r365610)
+++ stable/12/sys/riscv/riscv/machdep.c Thu Sep 10 20:34:44 2020        
(r365611)
@@ -414,7 +414,7 @@ get_fpcontext(struct thread *td, mcontext_t *mcp)
                KASSERT((curpcb->pcb_fpflags & ~PCB_FP_USERMASK) == 0,
                    ("Non-userspace FPE flags set in get_fpcontext"));
                memcpy(mcp->mc_fpregs.fp_x, curpcb->pcb_x,
-                   sizeof(mcp->mc_fpregs));
+                   sizeof(mcp->mc_fpregs.fp_x));
                mcp->mc_fpregs.fp_fcsr = curpcb->pcb_fcsr;
                mcp->mc_fpregs.fp_flags = curpcb->pcb_fpflags;
                mcp->mc_flags |= _MC_FP_VALID;
@@ -441,7 +441,7 @@ set_fpcontext(struct thread *td, mcontext_t *mcp)
                curpcb = curthread->td_pcb;
                /* FPE usage is enabled, override registers. */
                memcpy(curpcb->pcb_x, mcp->mc_fpregs.fp_x,
-                   sizeof(mcp->mc_fpregs));
+                   sizeof(mcp->mc_fpregs.fp_x));
                curpcb->pcb_fcsr = mcp->mc_fpregs.fp_fcsr;
                curpcb->pcb_fpflags = mcp->mc_fpregs.fp_flags & PCB_FP_USERMASK;
                td->td_frame->tf_sstatus |= SSTATUS_FS_CLEAN;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to