OpenBSD cvs log

created 2018-11-30T04:45:07Z
begin 2018-09-17T00:00:00Z
end 2018-09-18T00:00:00Z
path src/sys
commits 3

date 2018-09-17T02:34:16Z
author jsg
files src/sys/net80211/ieee80211_node.c log diff annotate
message fix memory leaks in ieee80211_add_ess()
ok stsp@ phessler@

date 2018-09-17T14:07:48Z
author friehm
files src/sys/netinet/tcp_input.c log diff annotate
message Do not acknowledge a received ack-only tcp packet that we would drop due to
PAWS. Otherwise we could trigger a retransmit of the opposite party with another
wrong timestamp and produce loop. I have seen this with a buggy server which
messed up tcp timestamps.
Suggested by Prof. Jacobson for FreeBSD.

ok krw, bluhm, henning, mpi

date 2018-09-17T14:56:37Z
author visa
files src/sys/kern/vfs_init.c log diff annotate
src/sys/kern/vfs_subr.c log diff annotate
src/sys/sys/mount.h log diff annotate
message Simplify VFS initialization.

Because loadable kernel modules are no longer, there is no need to
register or unregister filesystem implementations at runtime. Remove
vfs_register() and vfs_unregister(), and make vfsinit() call vfs_init
routines directly. Replace the linked list of vfsconf structs with
the vfsconflist[] array.

OK mpi@ bluhm@