created | 2018-11-30T03:51:46Z |
---|---|
begin | 2018-09-04T00:00:00Z |
end | 2018-09-05T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2018-09-04T02:38:25Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/kern/kern_event.c | log | diff | annotate |
message |
kevent: Don't poll for nonzero timeouts < 1us. Instead of truncating nanosecond timeouts to zero here and polling, we should round up to a delay of at least a tick, just like all the other timespec syscalls. Fixed in NetBSD kern_event.c v1.62 and FreeBSD r247804. ok millert@ visa@ |
date | 2018-09-04T19:09:39Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/net/pf_norm.c | log | diff | annotate |
message |
Avoid traversing the list of fragment entris to check whether the pf(4) reassembly is complete. Instead count the holes that are created when inserting a fragment. If there are no holes left, the fragments are continuous. idea from claudio@; OK claudio@ sashan@ |
date | 2018-09-04T20:34:10Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/net/pf_norm.c | log | diff | annotate |
message | Forgot to rename pf_frent_holes() prototype in previous commit. |