created | 2019-05-02T15:39:49Z |
---|---|
begin | 2019-04-29T00:00:00Z |
end | 2019-04-30T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2019-04-29T03:54:52Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/trunklacp.c | log | diff | annotate |
message |
don't have lacp input push lacp packets into the trunkports bpf again. if_input already runs bpf for all packets on a trunkport. having lacp code do it again means packets are seen twice by bpf filters twice, which is misleading. |
date | 2019-04-29T04:26:47Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/net/if_trunk.c | log | diff | annotate |
src/sys/net/if_trunk.h | log | diff | annotate | |
message | tr_unit is unused, so gc it |
date | 2019-04-29T09:00:16Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwn.c | log | diff | annotate |
message |
Extend channel dwell time during passive scans in iwn(4). Makes scan results more reliable. testing jmc@, kmos@, Tracey Emery ok kettenis@ kevlo@ jmc@ phessler@ |
date | 2019-04-29T15:46:11Z | |||
---|---|---|---|---|
author | cheloha | |||
files | src/sys/dev/ic/mc146818reg.h | log | diff | annotate |
message |
MC146818_GETTOD: Check for RTC rollover during read. Because the RTC is still ticking it is theoretically possible for the second to roll over while we are reading the clock. This is basically impossible on real/practical hardware but is an interesting corner case for e.g. a VM reading an emulated MC146818 during an exit to userspace. This doesn't check *every* register, so if it takes you a multiple of 60 seconds to read the RTC this change won't help you. But you've got bigger problems at that point. "no objections" kettenis@/mlarkin@, "fine idea" deraadt |