CVS commit: src/sys/arch/x86/x86

2018-06-15 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sat Jun 16 05:52:17 UTC 2018

Modified Files:
src/sys/arch/x86/x86: fpu.c

Log Message:
Actually, don't do anything if we switch to a kernel thread. When the cpu
switches back to a user thread the fpu is restored, so no point calling
fninit (which doesn't clear all the states anyway).


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/x86/x86/fpu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2018-06-15 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Sat Jun 16 01:25:23 UTC 2018

Modified Files:
src/sys/dev/pci: radeonfb.c

Log Message:
explicitly turn off tiling translation - now software rendered characters
look right again on r3xx hardware


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/sys/dev/pci/radeonfb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/patch

2018-06-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Jun 16 00:40:14 UTC 2018

Modified Files:
src/usr.bin/patch: inp.c

Log Message:
PR/53368: Thomas Barabosch: Potential integer overflow in usr.bin/patch/inp.c


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/usr.bin/patch/inp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Jun 16 00:19:42 UTC 2018

Modified Files:
src/doc: CHANGES

Log Message:
arm: Add support for Rockchip RK3328 SoC.


To generate a diff of this commit:
cvs rdiff -u -r1.2398 -r1.2399 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Jun 16 00:19:04 UTC 2018

Modified Files:
src/sys/arch/evbarm/conf: GENERIC64 files.generic64
src/sys/dev/fdt: files.fdt
Added Files:
src/sys/arch/arm/rockchip: files.rockchip rk3328_cru.c rk3328_cru.h
rk3328_platform.h rk_cru.c rk_cru.h rk_cru_arm.c rk_cru_composite.c
rk_cru_gate.c rk_cru_mux.c rk_cru_pll.c rk_gmac.c rk_gpio.c
rk_iomux.c rk_platform.c rk_usb.c
src/sys/dev/fdt: dwc2_fdt.c dwcmmc_fdt.c

Log Message:
Add initial support for Rockchip RK3328 SoC.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.13 src/sys/arch/arm/rockchip/files.rockchip
cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/rockchip/rk3328_cru.c \
src/sys/arch/arm/rockchip/rk3328_cru.h \
src/sys/arch/arm/rockchip/rk3328_platform.h \
src/sys/arch/arm/rockchip/rk_cru.c src/sys/arch/arm/rockchip/rk_cru.h \
src/sys/arch/arm/rockchip/rk_cru_arm.c \
src/sys/arch/arm/rockchip/rk_cru_composite.c \
src/sys/arch/arm/rockchip/rk_cru_gate.c \
src/sys/arch/arm/rockchip/rk_cru_mux.c \
src/sys/arch/arm/rockchip/rk_cru_pll.c \
src/sys/arch/arm/rockchip/rk_gmac.c src/sys/arch/arm/rockchip/rk_gpio.c \
src/sys/arch/arm/rockchip/rk_iomux.c \
src/sys/arch/arm/rockchip/rk_platform.c \
src/sys/arch/arm/rockchip/rk_usb.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/evbarm/conf/GENERIC64
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/conf/files.generic64
cvs rdiff -u -r0 -r1.1 src/sys/dev/fdt/dwc2_fdt.c \
src/sys/dev/fdt/dwcmmc_fdt.c
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/fdt/files.fdt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/ic

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Jun 16 00:15:40 UTC 2018

Modified Files:
src/sys/dev/ic: dwc_mmc_reg.h

Log Message:
Add VERID reg bits


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/ic/dwc_mmc_reg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/ic

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Jun 16 00:15:00 UTC 2018

Modified Files:
src/sys/dev/ic: dwc_gmac.c dwc_gmac_reg.h dwc_gmac_var.h

Log Message:
Add flag for disabling store-and-forward mode, and a callback for notifying
bus glue that the link speed has changed.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/dev/ic/dwc_gmac.c
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/ic/dwc_gmac_reg.h
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/ic/dwc_gmac_var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/fdt

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Jun 16 00:13:06 UTC 2018

Modified Files:
src/sys/dev/fdt: fixedclock.c

Log Message:
If clock-output-names is specified, use it for the clock name instead of the 
node name


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/fdt/fixedclock.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/fdt

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Jun 16 00:12:35 UTC 2018

Modified Files:
src/sys/dev/fdt: fdt_clock.c

Log Message:
fdtbus_clock_assign: simplify


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/fdt/fdt_clock.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/virt

2018-06-15 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Jun 15 23:57:55 UTC 2018

Modified Files:
src/sys/arch/arm/virt: virt_platform.c

Log Message:
Pull in arm/locore.h for arm_dsb() on aarch64


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/virt/virt_platform.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/cron/dist

2018-06-15 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jun 15 23:15:56 UTC 2018

Modified Files:
src/external/bsd/cron/dist: crontab.5

Log Message:
Fix Dd argument. Remove unnecessary whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/cron/dist/crontab.5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2018-06-15 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jun 15 23:13:19 UTC 2018

Modified Files:
src/share/man/man4: ipsec.4

Log Message:
Add missing word.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/share/man/man4/ipsec.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2018-06-15 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jun 15 23:11:56 UTC 2018

Modified Files:
src/share/man/man4: hifn.4 nsp.4 ubsec.4

Log Message:
Sort SEE ALSO.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/share/man/man4/hifn.4
cvs rdiff -u -r1.3 -r1.4 src/share/man/man4/nsp.4
cvs rdiff -u -r1.6 -r1.7 src/share/man/man4/ubsec.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/powerpc/oea

2018-06-15 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Fri Jun 15 23:11:39 UTC 2018

Modified Files:
src/sys/arch/powerpc/oea: cpu_subr.c

Log Message:
Fix fmttab value for L2CR_L2PE (parity enabled) so that we don't print
self-contradictory "no parity parity enabled".


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 src/sys/arch/powerpc/oea/cpu_subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Fri Jun 15 22:40:33 UTC 2018

Modified Files:
src/share/man/man9: module.9

Log Message:
Add missing .Fn mark-up


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/share/man/man9/module.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Fri Jun 15 22:27:40 UTC 2018

Modified Files:
src/share/man/man9: specificdata.9

Log Message:
Add note that there is no way to delete an individual datum from a
container.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/share/man/man9/specificdata.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Fri Jun 15 22:11:17 UTC 2018

Modified Files:
src/share/man/man9: specificdata.9

Log Message:
Bump date for previous changes


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/specificdata.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Fri Jun 15 22:10:44 UTC 2018

Modified Files:
src/share/man/man9: specificdata.9

Log Message:
Improve synopsis, remove unnecessary .Nm markup


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/share/man/man9/specificdata.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/powerpc/powerpc

2018-06-15 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Fri Jun 15 22:07:14 UTC 2018

Modified Files:
src/sys/arch/powerpc/powerpc: trap.c

Log Message:
In mtmsr emulation ignore PSL_VEC we set in mfmsr emulation just
above, as it freaks out PSL_USEROK_P().  This is also congruent with
how we handle PSL_FP.

PR port-macppc/53360


To generate a diff of this commit:
cvs rdiff -u -r1.153 -r1.154 src/sys/arch/powerpc/powerpc/trap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/misc

2018-06-15 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Fri Jun 15 21:59:17 UTC 2018

Modified Files:
src/share/misc: acronyms.comp

Log Message:
Add POWER/PowerPC/PPC.
Leaving the original PPC entry as it's a valid case.


To generate a diff of this commit:
cvs rdiff -u -r1.199 -r1.200 src/share/misc/acronyms.comp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Fri Jun 15 21:51:32 UTC 2018

Modified Files:
src/share/man/man9: specificdata.9

Log Message:
Fix pasto in .Dt title


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/man/man9/specificdata.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2018-06-15 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Fri Jun 15 21:22:36 UTC 2018

Modified Files:
src/sys/dev/pci: radeonfb.c

Log Message:
cosmetics, no functional change


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 src/sys/dev/pci/radeonfb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/man

2018-06-15 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri Jun 15 20:16:35 UTC 2018

Modified Files:
src/usr.bin/man: man.c

Log Message:
move 'utsname' to the main() function scope, so that the reference to
it outside the block remains valid.

should fix an asan reported issue.


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/usr.bin/man/man.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 19:52:01 UTC 2018

Modified Files:
src/sys/arch/evbarm/conf: VIRT
src/sys/dev/fdt: files.fdt
Added Files:
src/sys/dev/fdt: pl061gpio_fdt.c
src/sys/dev/ic: pl061reg.h

Log Message:
Add basic ARM PL061 GPIO driver with FDT attachment.

Mostly for Qemu 'virt' platform; really needs interrupt support
in gpiokeys(4) and this driver to work efficently and reliably.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/conf/VIRT
cvs rdiff -u -r1.30 -r1.31 src/sys/dev/fdt/files.fdt
cvs rdiff -u -r0 -r1.1 src/sys/dev/fdt/pl061gpio_fdt.c
cvs rdiff -u -r0 -r1.1 src/sys/dev/ic/pl061reg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 17:13:43 UTC 2018

Modified Files:
src/sys/dev/fdt: virtio_mmio_fdt.c
src/sys/dev/pci: virtio.c virtiovar.h
src/sys/dev/virtio: virtio_mmio.c

Log Message:
Add cfprint_t virtiobusprint() and use it for virtio_mmio.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/fdt/virtio_mmio_fdt.c
cvs rdiff -u -r1.34 -r1.35 src/sys/dev/pci/virtio.c
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/pci/virtiovar.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/virtio/virtio_mmio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/fdt

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 16:03:59 UTC 2018

Modified Files:
src/sys/arch/arm/fdt: psci_fdt.c

Log Message:
Fix PSCI 0.1 detection.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/fdt/psci_fdt.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/arm

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 15:59:20 UTC 2018

Modified Files:
src/sys/arch/arm/arm: psci.c

Log Message:
Use correct value for PSCI 0.2+ PSCI_CPU_ON.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/arm/psci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbarm/conf

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 15:22:01 UTC 2018

Modified Files:
src/sys/arch/evbarm/conf: std.virt

Log Message:
... -mcpu=armv7-a is actually spelled -march=armv7-a ...


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/conf/std.virt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/dumplfs

2018-06-15 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Jun 15 15:16:05 UTC 2018

Modified Files:
src/usr.sbin/dumplfs: Makefile dumplfs.c

Log Message:
PR/53367: Thomas Barabosch: Integer overflow in usr.sbin/dumplfs
While here use the "e" functions to always check for allocation errors.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/dumplfs/Makefile
cvs rdiff -u -r1.63 -r1.64 src/usr.sbin/dumplfs/dumplfs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jun 15 15:15:10 UTC 2018

Modified Files:
src/share/man/man9: specificdata.9

Log Message:
Whitespace nit.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/man/man9/specificdata.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man9

2018-06-15 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jun 15 15:14:15 UTC 2018

Modified Files:
src/share/man/man9: module.9

Log Message:
Whitespace fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 src/share/man/man9/module.9

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2018-06-15 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Jun 15 15:12:49 UTC 2018

Modified Files:
src/share/man/man4: udp.4

Log Message:
Sort errors. Use \(em.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/share/man/man4/udp.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/fdt

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 15:07:56 UTC 2018

Modified Files:
src/sys/dev/fdt: files.fdt
Added Files:
src/sys/dev/fdt: qemufwcfg_fdt.c

Log Message:
add FDT "qemu,fw-cfg-mmio" glue for qemufwcfg


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/fdt/files.fdt
cvs rdiff -u -r0 -r1.1 src/sys/dev/fdt/qemufwcfg_fdt.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbarm/conf

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 15:00:14 UTC 2018

Modified Files:
src/sys/arch/evbarm/conf: VIRT std.virt

Log Message:
'virt' platform adjustments:
 - support broader CPU model range
 - move kernel physical and virtual base to avoid bootloader,
   and keep KVA at or above 2GiB
 - add relevant drivers


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/conf/VIRT \
src/sys/arch/evbarm/conf/std.virt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 14:37:35 UTC 2018

Modified Files:
src/sys/arch/arm/virt: virt_platform.c
src/sys/arch/evbarm/virt: virt_start.S

Log Message:
Big endian support for virt_platform_early_putchar and xputc.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/virt/virt_platform.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/virt/virt_start.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbarm/virt

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 14:32:29 UTC 2018

Modified Files:
src/sys/arch/evbarm/virt: virt_start.S

Log Message:
fix xputc FIFO address for virt platform


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/virt/virt_start.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/fdt

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 14:27:57 UTC 2018

Modified Files:
src/sys/arch/arm/fdt: cpu_fdt.c

Log Message:
Add "arm,arm-v7" to compatible strings.

(for `qemu-system-arm -M virt`)


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/fdt/cpu_fdt.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/fdt

2018-06-15 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Fri Jun 15 14:25:22 UTC 2018

Modified Files:
src/sys/arch/arm/fdt: fdt_intr.h

Log Message:
Bump PIC_MAXSOURCES to 352.

(`qemu-system-arm -M virt` currently needs 288)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/fdt/fdt_intr.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2018-06-15 Thread Shoichi YAMAGUCHI
Module Name:src
Committed By:   yamaguchi
Date:   Fri Jun 15 09:54:02 UTC 2018

Modified Files:
src/distrib/sets/lists/tests: mi
src/etc/mtree: NetBSD.dist.tests

Log Message:
Add if_vlan directory to lists to fix the build failure

build.sh was failed when using "-V MKDEBUG=yes"


To generate a diff of this commit:
cvs rdiff -u -r1.786 -r1.787 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.150 -r1.151 src/etc/mtree/NetBSD.dist.tests

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/altq

2018-06-15 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri Jun 15 08:34:18 UTC 2018

Modified Files:
src/sys/altq: altq_priq.c

Log Message:
simplify priq_class_create():  if the alloc for cl_q fails,
then only clean up required to to free cl.  delete all the
code at err_ret that was probably used in the past, and move
the free + return upon failure earlier.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/altq/altq_priq.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/compat/sys

2018-06-15 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Fri Jun 15 08:17:38 UTC 2018

Modified Files:
src/sys/compat/sys: time_types.h

Log Message:
Revert previous, mrg's fix is better (even with possible namespace issues,
which I guess are not great in compat includes)  the perils of two
people doing fixes at around the same time.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/sys/time_types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/compat/sys

2018-06-15 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Fri Jun 15 07:46:59 UTC 2018

Modified Files:
src/sys/compat/sys: time_types.h

Log Message:
If we are going to use offsetof() we'd need to include  to
get it defined.  Rather than deal with potential namespace issues
with that, just clear the entire struct, rather than attempting to
stop after the potential padding field.   If the compiler is good enough
it should make no difference (there are just 3 fields, 2 named ones
are assigned to, immediately after the memset() - the compiler can
detect that, and not bother assigning (via memset()) to the unmamed
3rd padding field).   If the compiler is not smart enough to deal
with this, then I doubt writing 8 more zero bytes will make enough
difference to matter.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/compat/sys/time_types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/compat/sys

2018-06-15 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri Jun 15 07:33:27 UTC 2018

Modified Files:
src/sys/compat/sys: time_types.h

Log Message:
include libkern.h or string.h & stddef.h, to get the offsetof()
and memset() definitions.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/compat/sys/time_types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.