created | 2020-02-22T19:52:35Z |
---|---|
begin | 2020-02-19T00:00:00Z |
end | 2020-02-20T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2020-02-19T01:31:38Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/pci/ips.c | log | diff | annotate |
message |
ips(4): tsleep(9) -> tsleep_nsec(9) While here, get rid of the "timo" variable completely. In the SCSI_NOSLEEP path of ips_poll() use "usecs" and in the opposite path use "msecs". ok krw@ |
date | 2020-02-19T11:05:04Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/dev/ic/ath.c | log | diff | annotate |
src/sys/dev/ic/rt2560.c | log | diff | annotate | |
src/sys/dev/ic/rt2661.c | log | diff | annotate | |
src/sys/dev/ic/rt2860.c | log | diff | annotate | |
message |
Similar to other wireless drivers use bpf_mtap_hdr() to prepend the radiotap header instead of using a fack mbuf in the stack. OK stsp@ |
date | 2020-02-19T11:33:48Z | |||
---|---|---|---|---|
author | claudio | |||
files | src/sys/kern/kern_sig.c | log | diff | annotate |
message |
Remove the indirection via timeout for proc_stop_sweep(). Using a soft interrupt is enough to defer the signal handling. This is a leftover from the times where not all archs had generic soft interrupts. It is possible that the defer signal handling to a soft interrupt will be removed at a later stage. Input anton@, mpi@ OK kettenis@ |
date | 2020-02-19T16:55:04Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/amd64/amd64/locore0.S | log | diff | annotate |
src/sys/arch/amd64/conf/ld.script | log | diff | annotate | |
message |
Make sure the first 2MB page of the kernel is actually mapped RO in the direct map by using a properly aligned address. To prevent further confusion, remove __kernel_base_phys from the linker script and rename __kernel_end_phys into __kernel_phys_end. Hinted at by Maxime Villard. ok millert@, deraadt@, mpi@ |