OpenBSD cvs log

created 2019-02-03T05:23:45Z
begin 2019-01-28T00:00:00Z
end 2019-01-29T00:00:00Z
path src/sys
commits 6

date 2019-01-28T02:43:34Z
author dlg
files src/sys/net/if_mpe.c log diff annotate
message make a start at supporting ipv6 on mpe.

we still can't assign a v6 address to the interface, or handle icmp
error generation, but denis@ is working toward that.

date 2019-01-28T06:48:22Z
author dlg
files src/sys/net/if_mpe.c log diff annotate
message fix mpe_start by if_put()ting the right ifp

shuffle mpe_output while here.

date 2019-01-28T06:50:11Z
author dlg
files src/sys/net/if_mpe.c log diff annotate
message get rid of unused global

date 2019-01-28T10:29:35Z
author patrick
files src/sys/dev/fdt/imxuart.c log diff annotate
message Implement breaking into ddb on imxuart(4). When a break is detected,
a flag in the upper byte of the 2-byte-wide receive register is set.

ok kettenis@

date 2019-01-28T11:48:13Z
author mpi
files src/sys/kern/sched_bsd.c log diff annotate
message Stop accounting/updating priorities for Idle threads.

Idle threads are never placed on the runqueue so their priority doesn't
matter.

This fixes an accounting bug where top(1) would report a high CPU usage
for Idle threads of secondary CPUs right after booting. That's because
schedcpu() would give 100% CPU time to the Idle thread until "real"
threads get scheduled on the corresponding CPU.

Issue reported by bluhm@, ok visa@, kettenis@

date 2019-01-28T11:49:04Z
author mpi
files src/sys/kern/kern_clock.c log diff annotate
message Simplify by using `spc' since we already have it, no behavior change.