OpenBSD cvs log

created 2018-11-30T01:21:38Z
begin 2018-08-06T00:00:00Z
end 2018-08-07T00:00:00Z
path src/sys
commits 6

date 2018-08-06T09:34:17Z
author florian
files src/sys/net80211/ieee80211_node.c log diff annotate
message Do not set nwid over and over again. We just found the ess by comparing
the nwid. It will not have changed in the meantime.
OK stsp

date 2018-08-06T10:52:30Z
author patrick
files src/sys/arch/arm/include/fdt.h log diff annotate
src/sys/arch/arm64/include/fdt.h log diff annotate
src/sys/arch/octeon/include/fdt.h log diff annotate
src/sys/arch/octeon/include/intr.h log diff annotate
src/sys/dev/fdt/ahci_fdt.c log diff annotate
src/sys/dev/fdt/bcm2835_aux.c log diff annotate
src/sys/dev/fdt/com_fdt.c log diff annotate
src/sys/dev/fdt/dwmmc.c log diff annotate
src/sys/dev/fdt/dwpcie.c log diff annotate
src/sys/dev/fdt/ehci_fdt.c log diff annotate
src/sys/dev/fdt/if_dwge_fdt.c log diff annotate
src/sys/dev/fdt/if_dwxe.c log diff annotate
src/sys/dev/fdt/if_fec.c log diff annotate
src/sys/dev/fdt/if_mvneta.c log diff annotate
src/sys/dev/fdt/imxesdhc.c log diff annotate
src/sys/dev/fdt/imxgpc.c log diff annotate
src/sys/dev/fdt/imxgpio.c log diff annotate
src/sys/dev/fdt/imxiic.c log diff annotate
src/sys/dev/fdt/imxuart.c log diff annotate
src/sys/dev/fdt/mvicu.c log diff annotate
src/sys/dev/fdt/pluart_fdt.c log diff annotate
src/sys/dev/fdt/rkpcie.c log diff annotate
src/sys/dev/fdt/sdhc_fdt.c log diff annotate
src/sys/dev/fdt/sximmc.c log diff annotate
src/sys/dev/fdt/sxitwi.c log diff annotate
src/sys/dev/fdt/virtio_mmio.c log diff annotate
src/sys/dev/fdt/xhci_fdt.c log diff annotate
message Give the FDT interrupt API a more generic naming by replacing the
arm_intr_* prefix with fdt_intr_*.

ok kettenis@

date 2018-08-06T11:28:01Z
author stsp
files src/sys/net80211/ieee80211_ioctl.c log diff annotate
src/sys/net80211/ieee80211_node.c log diff annotate
src/sys/net80211/ieee80211_var.h log diff annotate
message Refactor ieee80211_add_ess():

Drop ieee80211_add_ess's nwid parameter. Read nwid and length directly
from the ic to make it more obvious where this function is reading from.

nwids are binary data with an explicit length, so treat them as such
instead of treating them like strings.

ok florian phessler

date 2018-08-06T11:42:18Z
author benno
files src/sys/net80211/ieee80211_ioctl.c log diff annotate
src/sys/net80211/ieee80211_ioctl.h log diff annotate
message make ifconfig join display the list of networks configured for
auto-join
with feedback from florian and stsp
ok florian@ phessler@ (on previous versions of the diff) stsp@

date 2018-08-06T14:28:13Z
author stsp
files src/sys/net80211/ieee80211_proto.c log diff annotate
message Fix debug message in ieee80211_auth_open(): s/reason/status/
Status codes and reason codes are separate things listed in distinct tables.
This debug message made me look at the wrong table and scratch my head.

date 2018-08-06T18:39:13Z
author kettenis
files src/sys/arch/arm/arm/arm32_machdep.c log diff annotate
src/sys/arch/arm/arm/bcopy_page.S log diff annotate
src/sys/arch/arm/arm/bcopyinout.S log diff annotate
src/sys/arch/arm/arm/copystr.S log diff annotate
src/sys/arch/arm/arm/cpu.c log diff annotate
src/sys/arch/arm/arm/cpufunc_asm.S log diff annotate
src/sys/arch/arm/arm/cpufunc_asm_armv7.S log diff annotate
src/sys/arch/arm/arm/cpuswitch7.S log diff annotate
src/sys/arch/arm/arm/exception.S log diff annotate
src/sys/arch/arm/arm/fault.c log diff annotate
src/sys/arch/arm/arm/genassym.cf log diff annotate
src/sys/arch/arm/arm/in_cksum_arm.S log diff annotate
src/sys/arch/arm/arm/irq_dispatch.S log diff annotate
src/sys/arch/arm/arm/locore.S log diff annotate
src/sys/arch/arm/arm/setstack.S log diff annotate
src/sys/arch/arm/arm/sigcode.S log diff annotate
src/sys/arch/arm/arm/softintr.c log diff annotate
src/sys/arch/arm/arm/undefined.c log diff annotate
src/sys/arch/arm/arm/vectors.S log diff annotate
src/sys/arch/arm/cortex/ampintc.c log diff annotate
src/sys/arch/arm/include/cpu.h log diff annotate
src/sys/arch/arm/include/mplock.h log diff annotate
src/sys/arch/armv7/armv7/armv7_machdep.c log diff annotate
src/sys/arch/armv7/armv7/armv7_start.S log diff annotate
src/sys/arch/armv7/armv7/locore0.S log diff annotate
src/sys/arch/armv7/include/mplock.h log diff annotate
message Make it possible to build a MULTIPROCESSOR kernel on armv7. While this
doesn't actually spin up any secondary CPUs, it does run. Mostly a cleanup
of along the lines of what I did earlier on arm64. Makes
armv7 use the MI mplock implementation and implements copyin32.

ok patrick@