OpenBSD cvs log

created 2019-05-08T06:28:13Z
begin 2018-02-16T00:00:00Z
end 2018-02-17T00:00:00Z
path src/sys
commits 5

date 2018-02-16T01:28:07Z
author dlg
files src/sys/net/if_gre.c log diff annotate
message allow wccp processing to be enabled per interface with the link0 flag.

this also changes the wccp handling to peek into it's payload to
determine whether it is wccp 1 or 2. wccp1 says the gre header is
followed by ipv4, while wccp2 says there's a small header before
the ipv4 packet. the wccp2 header cannot have 4 in the first nibble,
while ipv4 must have 4 in the first nibble. the code now looks at
the nibble to determine whether it should strip the wccp2 header
or not.

date 2018-02-16T02:41:07Z
author dlg
files src/sys/net/if_gre.c log diff annotate
message put egre back in a tree

it's new so there's no existing configs to be compat with.

date 2018-02-16T06:26:10Z
author dlg
files src/sys/net/if_gre.c log diff annotate
message make gre_encap prepend both the gre and tunnel ip headers.

makes the code a bit more straightforward

date 2018-02-16T07:37:48Z
author patrick
files src/sys/arch/armv7/imx/Attic/imxesdhc.c log diff annotate
message Support card interrupts in imxesdhc(4). The code that was written
initially was never tested with SDIO, as there had been no user. With
bwfm(4) we now have the first SDIO card on that controller. Align the
code with the standard sdhc(4), so that it doesn't hang after the first
interrupt fires.

ok kettenis@

date 2018-02-16T14:42:29Z
author fcambus
files src/sys/arch/i386/i386/est.c log diff annotate
message Add sizes for free() in the i386 version of the Enhanced SpeedStep driver.

It was already done on amd64, but not on i386. Tested on an Atom N270.

OK mpi@