created | 2019-12-31T05:55:16Z |
---|---|
begin | 2019-12-27T00:00:00Z |
end | 2019-12-28T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2019-12-27T09:29:50Z | |||
---|---|---|---|---|
author | anton | |||
files | src/sys/kern/sys_pipe.c | log | diff | annotate |
message |
Remove the kernel lock in pipe read and write routines since everything is serialized by the pipe_lock by now. The kernel lock is however still needed when interacting with kqueue in order to prevent a race and when potentially issuing SIGIO signals. ok visa@ |
date | 2019-12-27T09:46:13Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/net80211/ieee80211.c | log | diff | annotate |
message |
Don't start background scans before WPA handshake has completed. ok phessler |
date | 2019-12-27T22:17:01Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/kern/spec_vnops.c | log | diff | annotate |
src/sys/kern/vfs_default.c | log | diff | annotate | |
src/sys/kern/vfs_subr.c | log | diff | annotate | |
src/sys/sys/specdev.h | log | diff | annotate | |
message |
Convert the speclisth hash buckets into SLIST macros. This makes the vnode alias code more readable. OK visa@ |