created | 2019-05-08T22:33:05Z |
---|---|
begin | 2018-03-08T00:00:00Z |
end | 2018-03-09T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2018-03-08T05:33:56Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/pv/vmt.c | log | diff | annotate |
message |
Implement the VMWare vmbackup protocol using vfs_stall(). This lets you clone running guests and take disk-only snapshots, most of the time ending up with a clean filesystem. ok dlg@ deraadt@ |
date | 2018-03-08T20:44:23Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/arch/arm/conf/kern.ldscript | log | diff | annotate |
src/sys/arch/armv7/armv7/armv7_machdep.c | log | diff | annotate | |
message |
Rework and cleanup the linker script for armv7. The main feature is that it gives us a read-only data section. In addition the linker script is now easily diffable to arm64 and we also stop mapping some unnecessary space before the kernel. Prompted by deraadt@ ok kettenis@ |
date | 2018-03-08T22:04:18Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/kern/kern_xxx.c | log | diff | annotate |
src/sys/uvm/uvm_vnode.c | log | diff | annotate | |
message |
When we are rebooting, do not fail in uvn_io(). The vnodes are revoked while syncing disk, so the processes lose their executable pages. Instead of killing them with a SIGBUS after page fault, just sleep. This should prevent that init dies without pages followed by a kernel panic. initial diff from tedu@; OK deraadt@ tedu@ |