created | 2018-12-19T11:12:29Z |
---|---|
begin | 2018-04-25T12:00:00Z |
end | 2018-04-25T18:00:00Z |
path | src/sys |
commits | 4 |
date | 2018-04-25T15:53:08Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/nfs/nfs_vnops.c | log | diff | annotate |
message |
Fix use of unreferenced vnode by decrementing the vnode's reference count after unlocking. To improve consistency, use vput() instead of VOP_UNLOCK() + vrele(). OK guenther@, mpi@, tedu@ |
date | 2018-04-25T16:05:58Z | |||
---|---|---|---|---|
author | jca | |||
files | src/sys/net/if.h | log | diff | annotate |
message |
Make this header standalone #if __BSD_VISIBLE, by including needed headers Puts us in line with Free/NetBSD and Linux and will get us rid of pointless patches in the ports tree. ok guenther@ deraadt@ |
date | 2018-04-25T16:22:19Z | |||
---|---|---|---|---|
author | mlarkin | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
message |
vmm(4): clarify whose FPU state we are saving (change in a comment) no code change |
date | 2018-04-25T17:35:04Z | |||
---|---|---|---|---|
author | guenther | |||
files | src/sys/arch/amd64/amd64/trap.c | log | diff | annotate |
src/sys/arch/amd64/amd64/vector.S | log | diff | annotate | |
message |
Simplify the handling of faults in iretq and xrstor by doing the handling purely in ASM instead of fixing up the state to call into C...all in order to return back into a chunk of custom ASM which was longer than the direct solution! ok mlarkin@ |