OpenBSD cvs log

created 2019-05-08T06:07:13Z
begin 2018-02-09T00:00:00Z
end 2018-02-10T00:00:00Z
path src/sys
commits 12

date 2018-02-09T00:03:13Z
author dlg
files src/sys/net/if_gre.c log diff annotate
message bring back the wccp shizz.

date 2018-02-09T00:08:17Z
author jmatthew
files src/sys/dev/fdt/if_mvneta.c log diff annotate
message timeout_add -> timeout_add_sec

ok patrick@

date 2018-02-09T02:21:16Z
author patrick
files src/sys/dev/sdmmc/if_bwfm_sdio.c log diff annotate
message Implement the bwfm(4) SDIO bus logic. This is the bus layer that
converts the logic of the upper layers (sending control messages,
sending data messages, receiving event or data messages) into the
corresponding work that has to be done on the lowest layer. SDIO
is not the fastest bus for exchanging network packets, but maybe
there is room for tuning. Actual TX/RX is being done in a worker
task that serializes access to the hardware. This is good enough
to attach to WiFi networks and do network transfers. Developed
and tested on a Cubox-i.

date 2018-02-09T02:26:33Z
author patrick
files src/sys/sys/mbuf.h log diff annotate
message Extend the mbuf queue API with an accessor that checks whether
or not the mbuf queue is full.

ok dlg@

date 2018-02-09T03:01:24Z
author deraadt
files src/sys/dev/rnd.c log diff annotate
message Situation occur where bootloader cannot supply kernel with early
random data. But a new source of entropy arrived a few months ago
-- KARL generates highly disturbed images for some kernels (well,
not for bsd.rd)
This assumes the tail of text (just before etext[]) is readable.
We are trying to use a portable symbol name, and also avoid reading
a locore0 which has been unmapped...
ok mortimer

date 2018-02-09T03:59:15Z
author tb
files src/sys/arch/alpha/conf/Makefile.alpha log diff annotate
src/sys/arch/amd64/conf/Makefile.amd64 log diff annotate
src/sys/arch/arm64/conf/Makefile.arm64 log diff annotate
src/sys/arch/armv7/conf/Makefile.armv7 log diff annotate
src/sys/arch/hppa/conf/Makefile.hppa log diff annotate
src/sys/arch/i386/conf/Makefile.i386 log diff annotate
src/sys/arch/landisk/conf/Makefile.landisk log diff annotate
src/sys/arch/loongson/conf/Makefile.loongson log diff annotate
src/sys/arch/luna88k/conf/Makefile.luna88k log diff annotate
src/sys/arch/macppc/conf/Makefile.macppc log diff annotate
src/sys/arch/octeon/conf/Makefile.octeon log diff annotate
src/sys/arch/sgi/conf/Makefile.sgi log diff annotate
src/sys/arch/socppc/conf/Makefile.socppc log diff annotate
src/sys/arch/sparc64/conf/Makefile.sparc64 log diff annotate
message Check for the existence of /bsd before trying to back it up to /obsd.
Fixes 'make install' when /bsd is not present for some reason.

ok rob florian, "fine with me" deraadt

date 2018-02-09T04:05:58Z
author dlg
files src/sys/net/if_etherip.c log diff annotate
message rework etherip to make it more consistent and reduce code duplication.

ok claudio@

date 2018-02-09T07:32:35Z
author mpi
files src/sys/kern/uipc_syscalls.c log diff annotate
message Call socreate() before falloc() in sys_socket().

This is similar to what we do in sys_socketpair() and will allow us
to grab the KERNEL_LOCK() only after having created a socket.

ok tedu@

date 2018-02-09T09:22:46Z
author dlg
files src/sys/net/if_etherip.c log diff annotate
message add support for setting the ttl on the tunnel traffic.

date 2018-02-09T09:30:37Z
author dlg
files src/sys/net/if.c log diff annotate
src/sys/net/Attic/if_ipe.c log diff annotate
src/sys/net/Attic/if_ipe.h log diff annotate
src/sys/net/if_mobileip.c log diff annotate
src/sys/net/pfvar.h log diff annotate
message use struct in_addr to represent an address.

date 2018-02-09T09:35:03Z
author dlg
files src/sys/net/if.c log diff annotate
src/sys/net/Attic/if_ipe.c log diff annotate
src/sys/net/Attic/if_ipe.h log diff annotate
src/sys/net/pfvar.h log diff annotate
message oh carp - i didnt mean to commit these

date 2018-02-09T10:12:38Z
author dlg
files src/sys/net/if_gre.c log diff annotate
message use in_addr and in6_addr instead of uint32_ts