OpenBSD cvs log

created 2019-05-04T02:42:29Z
begin 2017-10-25T00:00:00Z
end 2017-10-26T00:00:00Z
path src/sys
commits 4

date 2017-10-25T09:24:09Z
author mpi
files src/sys/net/if_etherip.c log diff annotate
src/sys/net/if_gif.c log diff annotate
src/sys/net/if_vxlan.c log diff annotate
message Remove Multicast and Broadcast flags from the encapsulated packet in
vxlan(4) like it is done by other tunnelling pseudo-interfaces.

While here sync the comment between multiple interfaces.

Bug report and original diff from Pierre LALET.

date 2017-10-25T12:38:21Z
author job
files src/sys/conf/GENERIC log diff annotate
src/sys/netinet/tcp_input.c log diff annotate
src/sys/netinet/tcp_output.c log diff annotate
src/sys/netinet/tcp_timer.c log diff annotate
src/sys/netinet/tcp_usrreq.c log diff annotate
src/sys/netinet/tcp_var.h log diff annotate
message Remove the TCP_FACK option and associated #if{,n}def code.

TCP_FACK was disabled by provos@ in June 1999.
TCP_FACK is an algorithm that decides that when something is lost, all
not SACKed packets until the most forward SACK are lost. It may be a
correct estimate, if network does not reorder packets.

OK visa@ mpi@ mikeb@

date 2017-10-25T14:34:22Z
author kettenis
files src/sys/arch/armv7/omap/amdisplay.c log diff annotate
message Storing the address of a stack variable in a global variable is a bad idea.
Rework the code to store the relevant information in the softc. As a bonus,
this reduces the stack space that is used such that this file compiles with
clang.

ok ians@

date 2017-10-25T22:29:41Z
author mikeb
files src/sys/arch/amd64/amd64/fpu.c log diff annotate
message branches: 1.39.2;
Initialize processor extended state in fpu_kernel_enter

Tested by a few; OK visa, sthen