Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm

Pull ARM fix from Russell King:
"Just one fix to the ptrace code, spotted by Simon Marchi, where if a
thread migrates to a different CPU and the VFP registers are changed
through ptrace, the application doesn't see the updated VFP registers"

* 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm:
ARM: fix PTRACE_SETVFPREGS on SMP systems

+1 -1
+1 -1
arch/arm/kernel/ptrace.c
··· 733 733 if (ret) 734 734 return ret; 735 735 736 - vfp_flush_hwstate(thread); 737 736 thread->vfpstate.hard = new_vfp; 737 + vfp_flush_hwstate(thread); 738 738 739 739 return 0; 740 740 }