created | 2019-03-16T16:00:36Z |
---|---|
begin | 2019-03-10T00:00:00Z |
end | 2019-03-11T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2019-03-10T07:35:33Z | |||
---|---|---|---|---|
author | mlarkin | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
message |
vmm(4): add a debug printf if the host does not have writeback memory type for EPT Noticed by Guillaume Pagnoux and myself while cleaning up some old bugs. |
date | 2019-03-10T07:44:17Z | |||
---|---|---|---|---|
author | mlarkin | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
message | missing newline in a printf |
date | 2019-03-10T08:27:28Z | |||
---|---|---|---|---|
author | mlarkin | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
message | fix two wrong comments |
date | 2019-03-10T14:20:44Z | |||
---|---|---|---|---|
author | visa | |||
files | src/sys/arch/octeon/dev/octcrypto.c | log | diff | annotate |
message |
Use SMR instead of reference counting for session reclamation. This reduces the need of atomic operations. The lookup tree still requires serialization, though. |
date | 2019-03-10T21:16:15Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/kern/kern_tc.c | log | diff | annotate |
src/sys/kern/kern_time.c | log | diff | annotate | |
src/sys/sys/kernel.h | log | diff | annotate | |
src/sys/sys/timetc.h | log | diff | annotate | |
message |
Move adjtimedelta from kern_time.c to kern_tc.c. This will simplify upcoming MP-safety diffs for the timecounting layer. adjtimedelta is now accessed nowhere outside of kern_tc.c, so we can remove its extern declaration from kernel.h. Zeroing adjtimedelta within timecounter_mtx before we jump the real-time clock is also a bit safer than what we do now, as we are not racing a simultaneous tc_windup() call from hardclock(), which itself can modify adjtimedelta via ntp_update_second(). Discussed with visa@ and mpi@. ok visa@ |