created | 2019-05-08T22:31:15Z |
---|---|
begin | 2018-03-07T00:00:00Z |
end | 2018-03-08T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2018-03-07T01:33:07Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/amd64/amd64/tsc.c | log | diff | annotate |
message |
Stop assuming intel model 0x55 'Skylake X' has a fixed 25 MHz tsc freq. It turns out the frequency can vary between different processors that share the same cpuid model. Similiar change made in linux. ok mikeb@ millert@ |
date | 2018-03-07T01:39:08Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/amd64/amd64/tsc.c | log | diff | annotate |
message | Mhz -> MHz |
date | 2018-03-07T04:39:54Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/usb/usb_mem.c | log | diff | annotate |
message |
Replace non-functioning checks for use of the usb memory block allocator in interrupt context with assertwaitok(), which does work. ok dlg@ |
date | 2018-03-07T14:44:22Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/tmpfs/tmpfs_vfsops.c | log | diff | annotate |
message | add "int stall" argument required by filesystem stall code; from Tomohiro Kusumi |
date | 2018-03-07T18:30:23Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/kern/vfs_subr.c | log | diff | annotate |
message |
Remounting files systems read-only does not work reliably. There are corner cases where ffs may leak blocks. So better revert and unmount all file systems at reboot. The "init died" panic will be fixed in a different way. OK deraadt@ |