CVS commit: src/sys/dev/audio

2020-02-29 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Sat Feb 29 09:38:10 UTC 2020

Modified Files:
src/sys/dev/audio: audio.c

Log Message:
Minor fix.  audio_prinfo.pause is u_char, not bool.


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/audio/audio.c

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



CVS commit: src/sys/modules

2020-02-29 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Feb 29 11:03:44 UTC 2020

Modified Files:
src/sys/modules: Makefile

Log Message:
Group some PCI only modules together and only build them on a subset of
platforms.  The list is not complete.


To generate a diff of this commit:
cvs rdiff -u -r1.239 -r1.240 src/sys/modules/Makefile

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



CVS commit: src/sys/netbt

2020-02-29 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sat Feb 29 11:40:06 UTC 2020

Modified Files:
src/sys/netbt: l2cap_signal.c rfcomm_session.c

Log Message:
pass the address of the field, instead of relying on it being the first
field of the structure/union, no functional change, discussed with plunky@


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/netbt/l2cap_signal.c
cvs rdiff -u -r1.26 -r1.27 src/sys/netbt/rfcomm_session.c

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



CVS commit: src/crypto/external/bsd/openssh/dist

2020-02-29 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Sat Feb 29 14:03:17 UTC 2020

Modified Files:
src/crypto/external/bsd/openssh/dist: xmalloc.h

Log Message:
annotate xvasprintf w/ format string attribute


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/crypto/external/bsd/openssh/dist/xmalloc.h

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



CVS commit: src/sys/kern

2020-02-29 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 29 14:44:44 UTC 2020

Modified Files:
src/sys/kern: subr_disk_open.c

Log Message:
Make getdiskinfo() compatible with a DIOCGWEDGEINFO.

dkw_parent is defined to hold the disk name as used by disk_find(), not
a partition (i.e. no partition letter appended).


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/kern/subr_disk_open.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/amd64/amd64

2020-02-29 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 29 15:00:28 UTC 2020

Modified Files:
src/sys/arch/amd64/amd64: db_interface.c

Log Message:
Fix boot -c or -d by avoiding ipi handling before the vector is initialized.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/amd64/amd64/db_interface.c

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



CVS commit: src/sys/modules

2020-02-29 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Feb 29 16:25:37 UTC 2020

Modified Files:
src/sys/modules: Makefile

Log Message:
Disable hifn again


To generate a diff of this commit:
cvs rdiff -u -r1.240 -r1.241 src/sys/modules/Makefile

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

2020-02-29 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 29 16:36:25 UTC 2020

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

Log Message:
Fix signed/unsigned comparisons. Send data little endian.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/dev/pci/hifn7751.c

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



CVS commit: src/sys/net80211

2020-02-29 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 29 16:56:58 UTC 2020

Modified Files:
src/sys/net80211: ieee80211_output.c

Log Message:
Fix printf to handle various datatypes for MHLEN.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/net80211/ieee80211_output.c

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



CVS commit: src/sys/sys

2020-02-29 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 29 16:59:00 UTC 2020

Modified Files:
src/sys/sys: mbuf.h

Log Message:
Follow FreeBSD and cast MLEN and MHLEN to int. mbuf length arithmtic is
done with signed integers and this avoids comparisons with different
signedness.


To generate a diff of this commit:
cvs rdiff -u -r1.222 -r1.223 src/sys/sys/mbuf.h

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



CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs

2020-02-29 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 29 17:03:33 UTC 2020

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zvol.c

Log Message:
Fix disk geometry calculation. Add DIOCGPARTINFO to support
getdisksize() used by other drivers, filesystems and specfs.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zvol.c

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



CVS commit: src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 17:14:40 UTC 2020

Modified Files:
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm: arm.inc

Log Message:
earmv5 / earmv5eb is a valid MACHINE_ARCH, so match it when
setting __ARM_MAX_ARCH__.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/arm.inc

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



CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs

2020-02-29 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Sat Feb 29 17:15:43 UTC 2020

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: vdev_disk.c

Log Message:
Use utility functions to handle disk geometry.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/vdev_disk.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 18:07:57 UTC 2020

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

Log Message:
Use the 64-bit PCI DMA tag if available.  Otherwise, we are needlessly
allocating (and using) bounce buffers on sytems with >4GB of RAM.

XXX pullup-9


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/if_mcx.c

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



CVS commit: src/libexec/ld.elf_so

2020-02-29 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Sat Feb 29 18:45:20 UTC 2020

Modified Files:
src/libexec/ld.elf_so: symbol.c

Log Message:
Fix vax and mips build


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/libexec/ld.elf_so/symbol.c

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



CVS commit: src/distrib/sets/lists/modules

2020-02-29 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sat Feb 29 18:46:12 UTC 2020

Modified Files:
src/distrib/sets/lists/modules: md.amd64 md.i386 mi

Log Message:
if_ixl is MD


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/distrib/sets/lists/modules/md.amd64
cvs rdiff -u -r1.85 -r1.86 src/distrib/sets/lists/modules/md.i386
cvs rdiff -u -r1.133 -r1.134 src/distrib/sets/lists/modules/mi

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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 18:49:53 UTC 2020

Modified Files:
src/sys/dev/pci: if_ti.c if_tireg.h

Log Message:
- Change the definition and usage of TI_HOSTADDR() to allow for 64-bit
  DMA addresses.  Modeled after similar usage in the bge(4) driver (the
  chips supported by bge(4) are descendants of those supported by ti(4)).
- Use the 64-bit PCI DMA tag if available, otherwise we're allocating (and
  using) bounce buffers needlessly.


To generate a diff of this commit:
cvs rdiff -u -r1.114 -r1.115 src/sys/dev/pci/if_ti.c
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/pci/if_tireg.h

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



CVS commit: src/libexec/ld.elf_so

2020-02-29 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Sat Feb 29 18:53:55 UTC 2020

Modified Files:
src/libexec/ld.elf_so: headers.c

Log Message:
Add extra cast to suppress incompatible-pointer-types GCC warning


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/libexec/ld.elf_so/headers.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 19:29:38 UTC 2020

Modified Files:
src/sys/dev/pci: if_tireg.h

Log Message:
G/C the never-used version of ti_hostaddr that can't possibly be correct.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/pci/if_tireg.h

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



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

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 20:17:11 UTC 2020

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

Log Message:
PR kern/55033: kernel panics when starting X

Remove the uvm_page_owner_locked_p() assertions in the x86 pmap.  The DRM
code doesn't follow the locking protocol (it's OK though, since pages aren't
changing identity) and having thought about it more we're most likely going
to have to do full PV locking to make progress on concurrent fault handing,
ergo assertions not so important.


To generate a diff of this commit:
cvs rdiff -u -r1.359 -r1.360 src/sys/arch/x86/x86/pmap.c

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



CVS commit: [ad-namecache] src/common/lib/libc

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 20:17:43 UTC 2020

Modified Files:
src/common/lib/libc/gen [ad-namecache]: radixtree.c
src/common/lib/libc/stdlib [ad-namecache]: random.c
src/common/lib/libc/string [ad-namecache]: bcmp.c memcmp.c
Removed Files:
src/common/lib/libc/arch/i386/string [ad-namecache]: memcmp.S
src/common/lib/libc/arch/x86_64/string [ad-namecache]: bcmp.S memcmp.S

Log Message:
Sync with head.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r0 src/common/lib/libc/arch/i386/string/memcmp.S
cvs rdiff -u -r1.3 -r0 src/common/lib/libc/arch/x86_64/string/bcmp.S \
src/common/lib/libc/arch/x86_64/string/memcmp.S
cvs rdiff -u -r1.20 -r1.20.2.1 src/common/lib/libc/gen/radixtree.c
cvs rdiff -u -r1.5 -r1.5.20.1 src/common/lib/libc/stdlib/random.c
cvs rdiff -u -r1.7 -r1.7.38.1 src/common/lib/libc/string/bcmp.c
cvs rdiff -u -r1.5 -r1.5.8.1 src/common/lib/libc/string/memcmp.c

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



CVS commit: [ad-namecache] src/sys/arch

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 20:18:34 UTC 2020

Modified Files:
src/sys/arch/aarch64/aarch64 [ad-namecache]: cpu.c genassym.cf locore.S
netbsd32_machdep.c pmap.c trap.c vectors.S
src/sys/arch/aarch64/conf [ad-namecache]: files.aarch64 majors.aarch64
src/sys/arch/aarch64/include [ad-namecache]: armreg.h cpu.h machdep.h
param.h pmap.h pte.h types.h
src/sys/arch/acorn32/podulebus [ad-namecache]: if_ie.c
src/sys/arch/algor/conf [ad-namecache]: majors.algor
src/sys/arch/alpha/alpha [ad-namecache]: genassym.cf machdep.c prom.c
src/sys/arch/alpha/conf [ad-namecache]: majors.alpha
src/sys/arch/amd64/amd64 [ad-namecache]: db_interface.c genassym.cf
machdep.c
src/sys/arch/amd64/conf [ad-namecache]: ALL GENERIC XEN3_DOM0
majors.amd64
src/sys/arch/amd64/include [ad-namecache]: param.h
src/sys/arch/amd64/stand/prekern [ad-namecache]: mm.c
src/sys/arch/amiga/amiga [ad-namecache]: genassym.cf
src/sys/arch/amiga/dev [ad-namecache]: aucc.c if_bah_zbus.c if_es.c
if_qn.c toccata.c
src/sys/arch/amiga/include [ad-namecache]: vmparam.h
src/sys/arch/arm/acpi [ad-namecache]: acpi_iort.c acpi_iort.h
acpi_pci_machdep.c acpi_pci_machdep.h acpi_pci_n1sdp.c cpu_acpi.c
files.acpi gicv3_acpi.c
src/sys/arch/arm/altera [ad-namecache]: cycv_platform.c
src/sys/arch/arm/amlogic [ad-namecache]: meson_dwmac.c
src/sys/arch/arm/arm [ad-namecache]: arm_cpu_topology.c arm_machdep.c
armv6_start.S cpufunc.c fiq.c
src/sys/arch/arm/arm32 [ad-namecache]: arm32_boot.c arm32_kvminit.c
arm32_machdep.c armv7_generic_space.c bus_dma.c cpu.c cpuswitch.S
fault.c genassym.cf pmap.c
src/sys/arch/arm/at91 [ad-namecache]: at91emac.c at91pmc.c
src/sys/arch/arm/broadcom [ad-namecache]: bcm2835_emmc.c bcm2835_intr.c
bcm2835_mbox.c bcm2835_mbox_acpi.c bcm2835reg.h bcm283x_platform.c
bcm53xx_eth.c
src/sys/arch/arm/conf [ad-namecache]: Makefile.arm files.arm
majors.arm32
src/sys/arch/arm/cortex [ad-namecache]: gicv3.c gicv3.h gicv3_its.c
src/sys/arch/arm/ep93xx [ad-namecache]: epe.c
src/sys/arch/arm/fdt [ad-namecache]: cpu_fdt.c
src/sys/arch/arm/footbridge [ad-namecache]: footbridge_pci.c
src/sys/arch/arm/gemini [ad-namecache]: gemini_gmac.c if_gmc.c if_gpn.c
src/sys/arch/arm/imx [ad-namecache]: if_enet.c
src/sys/arch/arm/include [ad-namecache]: cpu.h cpu_topology.h
cputypes.h locore.h pci_machdep.h
src/sys/arch/arm/include/arm32 [ad-namecache]: machdep.h param.h pmap.h
pte.h types.h
src/sys/arch/arm/iomd [ad-namecache]: vidcaudio.c
src/sys/arch/arm/mainbus [ad-namecache]: cpu_mainbus.c
src/sys/arch/arm/nvidia [ad-namecache]: soc_tegra124.c tegra_sdhc.c
src/sys/arch/arm/omap [ad-namecache]: if_cpsw.c
src/sys/arch/arm/pci [ad-namecache]: pci_msi_machdep.c
src/sys/arch/arm/pic [ad-namecache]: pic.c
src/sys/arch/arm/rockchip [ad-namecache]: rk_i2s.c
src/sys/arch/arm/samsung [ad-namecache]: exynos_platform.c
src/sys/arch/arm/sunxi [ad-namecache]: sun4i_emac.c sun8i_crypto.c
sunxi_can.c sunxi_codec.c sunxi_emac.c sunxi_i2s.c sunxi_mixer.c
sunxi_nmi.c
src/sys/arch/arm/ti [ad-namecache]: if_cpsw.c
src/sys/arch/arm/vexpress [ad-namecache]: vexpress_platform.c
src/sys/arch/arm/xscale [ad-namecache]: ixp425-fw.README
ixp425_if_npe.c ixp425reg.h
src/sys/arch/atari/atari [ad-namecache]: genassym.cf
src/sys/arch/atari/include [ad-namecache]: vmparam.h
src/sys/arch/cats/conf [ad-namecache]: GENERIC
src/sys/arch/cesfic/cesfic [ad-namecache]: genassym.cf
src/sys/arch/cesfic/include [ad-namecache]: vmparam.h
src/sys/arch/cobalt/conf [ad-namecache]: majors.cobalt
src/sys/arch/dreamcast/dev/g2 [ad-namecache]: aica.c
src/sys/arch/emips/ebus [ad-namecache]: ace_ebus.c if_le_ebus.c
src/sys/arch/epoc32/conf [ad-namecache]: majors.epoc32
src/sys/arch/evbarm/bcm53xx [ad-namecache]: bcm53xx_machdep.c
src/sys/arch/evbarm/beagle [ad-namecache]: beagle_machdep.c
src/sys/arch/evbarm/conf [ad-namecache]: GENERIC GENERIC.common
GENERIC64 HDL_G HPT5325 MINI2440 MMNET_GENERIC MPCSA_GENERIC POGO
RPI RPI2 SHEEVAPLUG SMDK2410 TS7200 TWINTAIL files.fdt files.rpi
src/sys/arch/evbarm/fdt [ad-namecache]: fdt_machdep.c fdt_memory.c
src/sys/arch/evbarm/gumstix [ad-namecache]: gumstix_machdep.c
src/sys/arch/evbarm/imx7 [ad-namecache]: imx7_machdep.c
src/sys/arch/evbarm/mini2440 [ad-namecache]: audio_mini2440.c
src/sys/arch/evbarm/nitrogen6 [ad-namecache]: nitrogen6_machdep.c
  

CVS commit: [ad-namecache] src/sys/external

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 20:20:19 UTC 2020

Modified Files:
src/sys/external/bsd/common/include/linux [ad-namecache]: kernel.h
list.h
src/sys/external/bsd/common/linux [ad-namecache]: linux_work.c
src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common 
[ad-namecache]:
sanitizer_interceptors_ioctl_netbsd.inc
sanitizer_platform_limits_netbsd.cc
src/sys/external/bsd/drm2/amdgpu [ad-namecache]: files.amdgpu
src/sys/external/bsd/drm2/dist/drm [ad-namecache]: drm_agpsupport.c
drm_atomic.c drm_atomic_helper.c drm_bufs.c drm_context.c
drm_crtc.c drm_crtc_helper.c drm_dp_helper.c drm_dp_mst_topology.c
drm_drv.c drm_edid.c drm_fb_helper.c drm_flip_work.c drm_gem.c
drm_global.c drm_ioctl.c drm_irq.c drm_mm.c drm_modes.c
drm_modeset_lock.c drm_plane_helper.c drm_prime.c
drm_probe_helper.c
src/sys/external/bsd/drm2/dist/drm/amd/amdgpu [ad-namecache]:
amdgpu_atom.c amdgpu_atombios.c amdgpu_atombios_crtc.c
amdgpu_atombios_dp.c amdgpu_atombios_encoders.c
amdgpu_atombios_i2c.c amdgpu_bo_list.c amdgpu_cgs.c amdgpu_ci_dpm.c
amdgpu_ci_smc.c amdgpu_cik_ih.c amdgpu_cik_sdma.c amdgpu_cs.c
amdgpu_ctx.c amdgpu_cz_dpm.c amdgpu_cz_ih.c amdgpu_cz_smc.c
amdgpu_dce_v10_0.c amdgpu_dce_v11_0.c amdgpu_dce_v8_0.c
amdgpu_device.c amdgpu_display.c amdgpu_dpm.c amdgpu_fb.c
amdgpu_fence.c amdgpu_fiji_dpm.c amdgpu_fiji_smc.c amdgpu_gem.c
amdgpu_gfx_v7_0.c amdgpu_gfx_v8_0.c amdgpu_gmc_v7_0.c
amdgpu_gmc_v8_0.c amdgpu_i2c.c amdgpu_iceland_dpm.c
amdgpu_iceland_ih.c amdgpu_iceland_smc.c amdgpu_ih.c amdgpu_kms.c
amdgpu_kv_dpm.c amdgpu_object.c amdgpu_object.h amdgpu_ring.c
amdgpu_sdma_v2_4.c amdgpu_sdma_v3_0.c amdgpu_test.c
amdgpu_tonga_dpm.c amdgpu_tonga_ih.c amdgpu_tonga_smc.c
amdgpu_ttm.c amdgpu_ucode.c amdgpu_uvd.c amdgpu_uvd_v4_2.c
amdgpu_uvd_v5_0.c amdgpu_uvd_v6_0.c amdgpu_vce.c amdgpu_vce_v3_0.c
amdgpu_vm.c
src/sys/external/bsd/drm2/dist/drm/i915 [ad-namecache]:
i915_cmd_parser.c i915_debugfs.c i915_dma.c i915_drv.c i915_drv.h
i915_gem.c i915_gem_context.c i915_gem_execbuffer.c
i915_gem_fence.c i915_gem_gtt.c i915_gem_render_state.c
i915_gem_stolen.c i915_gpu_error.c i915_guc_submission.c i915_irq.c
i915_params.c intel_audio.c intel_bios.c intel_crt.c intel_csr.c
intel_ddi.c intel_display.c intel_dp.c intel_dp_mst.c intel_drv.h
intel_dsi.c intel_dvo.c intel_fbc.c intel_fbdev.c
intel_fifo_underrun.c intel_guc_loader.c intel_hdmi.c intel_i2c.c
intel_lrc.c intel_lvds.c intel_opregion.c intel_overlay.c
intel_panel.c intel_pm.c intel_psr.c intel_ringbuffer.c
intel_ringbuffer.h intel_runtime_pm.c intel_sdvo.c intel_sideband.c
intel_sprite.c intel_tv.c intel_uncore.c
src/sys/external/bsd/drm2/dist/drm/nouveau [ad-namecache]:
nouveau_abi16.c nouveau_bios.h nouveau_chan.c nouveau_connector.c
nouveau_display.c nouveau_drm.c nouveau_fbcon.c nouveau_fence.c
nouveau_gem.c nouveau_nv50_display.c nouveau_nv84_fence.c
src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04 [ad-namecache]:
nouveau_dispnv04_arb.c nouveau_dispnv04_disp.c
nouveau_dispnv04_overlay.c nouveau_dispnv04_tvmodesnv17.c
nouveau_dispnv04_tvnv04.c
src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core 
[ad-namecache]:
device.h
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/device 
[ad-namecache]:
nouveau_nvkm_engine_device_base.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp 
[ad-namecache]:
nouveau_nvkm_engine_disp_dport.c nouveau_nvkm_engine_disp_gf119.c
nouveau_nvkm_engine_disp_nv50.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr 
[ad-namecache]:
nouveau_nvkm_engine_gr_gf100.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios 
[ad-namecache]:
nouveau_nvkm_subdev_bios_pll.c nouveau_nvkm_subdev_bios_shadowpci.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/devinit 
[ad-namecache]:
nouveau_nvkm_subdev_devinit_nv04.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/i2c 
[ad-namecache]:
nouveau_nvkm_subdev_i2c_aux.c nouveau_nvkm_subdev_i2c_bus.c
nouveau_nvkm_subdev_i2c_pad.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem 
[ad-namecache]:
nouveau_nvkm_subdev_instmem_base.c
nouveau_nvkm_subdev_instmem_nv40.c
src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu 
[ad-namecache]:
  

CVS commit: [ad-namecache] src/sys/dev

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 20:19:17 UTC 2020

Modified Files:
src/sys/dev [ad-namecache]: DEVNAMES clockctl.c fss.c ld.c vnd.c
src/sys/dev/acpi [ad-namecache]: acpi_mcfg.c acpi_mcfg.h files.acpi
sdhc_acpi.c xhci_acpi.c
src/sys/dev/audio [ad-namecache]: audio.c audiodef.h audiovar.h
src/sys/dev/cadence [ad-namecache]: if_cemac.c
src/sys/dev/dkwedge [ad-namecache]: dk.c
src/sys/dev/fdt [ad-namecache]: fdt_intr.c fdt_subr.c fdtbus.c fdtvar.h
files.fdt
src/sys/dev/hdaudio [ad-namecache]: hdafg.c hdaudio.c hdaudiodevs
hdaudiodevs.h hdaudiodevs_data.h
src/sys/dev/hyperv [ad-namecache]: if_hvn.c
src/sys/dev/i2c [ad-namecache]: axp20x.c axppmic.c dstemp.c files.i2c
gttwsi_core.c
src/sys/dev/ic [ad-namecache]: ad1848.c ad1848var.h ahcisata_core.c
aic6915.c aic79xx_inline.h am7990.c am79900.c an.c arn5008.c
arn9003.c ath.c athn.c atw.c awi.c ax88190.c bwfm.c bwi.c com.c
cs89x0.c dl10019.c dm9000.c dp8390.c dp83932.c dwc_gmac.c elink3.c
elinkxl.c gem.c hd64570.c hme.c i82557.c i82586.c i82596.c
interwave.c interwavevar.h lan9118.c lance.c lemac.c malo.c
mb86950.c mb86960.c mtd803.c mvsata.c pl041.c rt2560.c rt2661.c
rt2860.c rtl8169.c rtl81x9.c rtw.c seeq8005.c sgec.c siisata.c
sl811hs.c smc83c170.c smc90cx6.c smc91cxx.c ssdfb.c tulip.c wdc.c
wi.c
src/sys/dev/ieee1394 [ad-namecache]: if_fwip.c
src/sys/dev/isa [ad-namecache]: cs89x0isa.c gus.c if_eg.c if_el.c
if_iy.c mcd.c wss.c ym.c
src/sys/dev/isapnp [ad-namecache]: gus_isapnp.c
src/sys/dev/marvell [ad-namecache]: if_gfe.c if_mvgbe.c if_mvxpe.c
src/sys/dev/mii [ad-namecache]: brgphy.c dmphy.c etphy.c makphy.c
micphy.c miidevs miidevs.h miidevs_data.h rdcphy.c
src/sys/dev/nvmm/x86 [ad-namecache]: nvmm_x86_svm.c nvmm_x86_vmx.c
src/sys/dev/ofw [ad-namecache]: ofdisk.c ofnet.c
src/sys/dev/pad [ad-namecache]: pad.c
src/sys/dev/pci [ad-namecache]: auacer.c auich.c auixp.c autri.c
auvia.c cmpci.c files.pci gcscaudio.c hifn7751.c ichsmb.c if_age.c
if_alc.c if_alcreg.h if_ale.c if_an_pci.c if_aq.c if_bce.c if_bge.c
if_bgevar.h if_bnx.c if_bnxvar.h if_cas.c if_casreg.h if_casvar.h
if_dge.c if_ena.c if_et.c if_ipw.c if_iwi.c if_iwm.c if_iwn.c
if_ixl.c if_ixlvar.h if_jme.c if_kse.c if_lii.c if_mcx.c if_msk.c
if_nfe.c if_pcn.c if_re_pci.c if_rge.c if_rtwn.c if_sip.c if_sk.c
if_ste.c if_stge.c if_ti.c if_tireg.h if_tl.c if_txp.c if_vge.c
if_vioif.c if_vr.c if_vte.c if_vtevar.h if_wm.c if_wpi.c if_xge.c
pci.c pciconf.c pcidevs pcidevs.h pcidevs_data.h pcireg.h
radeonfb.c yds.c
src/sys/dev/pci/bktr [ad-namecache]: bktr_core.c
src/sys/dev/pci/cxgb [ad-namecache]: cxgb_main.c
src/sys/dev/pci/igma [ad-namecache]: igmafb.c
src/sys/dev/pci/ixgbe [ad-namecache]: ix_txrx.c ixgbe.c ixgbe.h
ixgbe_common.c ixgbe_netbsd.c ixgbe_vf.c ixgbe_x550.c ixv.c
src/sys/dev/pci/qat [ad-namecache]: qat.c
src/sys/dev/pckbport [ad-namecache]: alps.c synaptics.c
src/sys/dev/pcmcia [ad-namecache]: if_cnw.c if_malo_pcmcia.c if_ray.c
if_xi.c
src/sys/dev/ppbus [ad-namecache]: if_plip.c
src/sys/dev/qbus [ad-namecache]: if_de.c if_dmc.c if_qt.c
src/sys/dev/sbus [ad-namecache]: be.c dbri.c qe.c
src/sys/dev/scsipi [ad-namecache]: atapi_wdc.c if_se.c scsiconf.c
scsipi_base.c
src/sys/dev/sdmmc [ad-namecache]: if_bwfm_sdio.c
src/sys/dev/tprof [ad-namecache]: tprof_armv7.c
src/sys/dev/usb [ad-namecache]: FILES Makefile TODO.usbmp ehci.c
files.usb if_athn_usb.c if_atu.c if_aue.c if_axe.c if_axen.c
if_bwfm_usb.c if_cdce.c if_cue.c if_kue.c if_mos.c if_mue.c
if_otus.c if_rum.c if_run.c if_smsc.c if_udav.c if_umb.c if_upgt.c
if_upl.c if_ural.c if_ure.c if_url.c if_urndis.c if_urtw.c
if_urtwn.c if_zyd.c motg.c ohci.c u3g.c uatp.c uhci.c uhmodem.c
uhso.c umass.c umass_scsipi.c umodeswitch.c usb.c usb_subr.c
usbdevices.config usbdevs usbdevs.h usbdevs_data.h usbdi.c usbdi.h
usbdi_util.c usbdi_util.h usbdivar.h usbnet.c uvideo.c vhci.c
xhci.c
src/sys/dev/wsfb [ad-namecache]: genfb.c
Added Files:
src/sys/dev/acpi [ad-namecache]: genet_acpi.c
src/sys/dev/fdt [ad-namecache]: fdt_private.h genet_fdt.c
src/sys/dev/i2c [ad-namecache]: pcagpio.c
src/sys/dev/ic [ad-namecache]: bcmgenet.c bcmgenetreg.h bcmgenetvar.h
src/sys/dev/ppbus [ad-namecache]: ppbusdevices.config
src/sys/dev/scsipi [ad-namecache]: scsi_sdt.h
src/sys/dev/usb [ad-nameca

CVS commit: [ad-namecache] src/sys

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 20:21:12 UTC 2020

Modified Files:
src/sys/coda [ad-namecache]: coda_vnops.c
src/sys/compat/common [ad-namecache]: Makefile.sysio
compat_sysctl_09_43.c kern_50.c kern_info_43.c kern_time_50.c
kern_time_60.c kern_xxx_12.c rtsock_14.c rtsock_50.c
uipc_syscalls_40.c uipc_syscalls_50.c vfs_syscalls_30.c
vfs_syscalls_43.c
src/sys/compat/linux/common [ad-namecache]: linux_exec.c
src/sys/compat/netbsd32 [ad-namecache]: netbsd32_compat_30.c
netbsd32_compat_50.c netbsd32_compat_60.c netbsd32_fs.c
netbsd32_ioctl.c netbsd32_lwp.c
src/sys/conf [ad-namecache]: files majors.usb ssp.mk
src/sys/ddb [ad-namecache]: db_output.c db_proc.c db_xxx.c
src/sys/dist/pf/net [ad-namecache]: if_pflog.c if_pfsync.c pf_ioctl.c
src/sys/fs/hfs [ad-namecache]: hfs_vfsops.c
src/sys/fs/msdosfs [ad-namecache]: msdosfs_vfsops.c msdosfs_vnops.c
src/sys/fs/puffs [ad-namecache]: puffs_msgif.c puffs_vfsops.c
puffs_vnops.c
src/sys/fs/smbfs [ad-namecache]: smbfs_vfsops.c
src/sys/fs/tmpfs [ad-namecache]: tmpfs_subr.c tmpfs_vnops.c
src/sys/fs/udf [ad-namecache]: udf_subr.c udf_vnops.c
src/sys/fs/union [ad-namecache]: union_subr.c union_vnops.c
src/sys/fs/unionfs [ad-namecache]: unionfs_vnops.c
src/sys/kern [ad-namecache]: files.kern init_main.c kern_condvar.c
kern_descrip.c kern_event.c kern_exec.c kern_exit.c kern_fork.c
kern_idle.c kern_ktrace.c kern_lock.c kern_lwp.c kern_module.c
kern_pmf.c kern_proc.c kern_reboot.c kern_resource.c kern_rwlock.c
kern_sig.c kern_sleepq.c kern_softint.c kern_synch.c
kern_threadpool.c kern_veriexec.c subr_asan.c subr_autoconf.c
subr_copy.c subr_cpu.c subr_disk_open.c subr_exec_fd.c subr_msan.c
subr_percpu.c subr_pool.c sys_aio.c sys_descrip.c sys_lwp.c
sys_pset.c sys_ptrace_common.c sys_sched.c sys_select.c
sys_syscall.c sysv_ipc.c uipc_socket.c uipc_socket2.c uipc_usrreq.c
vfs_bio.c vfs_cwd.c vfs_getcwd.c vfs_init.c vfs_lookup.c
vfs_mount.c vfs_subr.c vfs_syscalls.c vfs_vnode.c vfs_vnops.c
vnode_if.c vnode_if.sh
src/sys/lib/libkern/arch/i386 [ad-namecache]: Makefile.inc
src/sys/lib/libkern/arch/x86_64 [ad-namecache]: Makefile.inc
src/sys/lib/libsa [ad-namecache]: nfs.c
src/sys/miscfs/deadfs [ad-namecache]: dead_vnops.c
src/sys/miscfs/fdesc [ad-namecache]: fdesc_vnops.c
src/sys/miscfs/genfs [ad-namecache]: genfs_io.c genfs_vnops.c
layer_vfsops.c layer_vnops.c
src/sys/miscfs/kernfs [ad-namecache]: kernfs.h kernfs_vfsops.c
kernfs_vnops.c
src/sys/miscfs/procfs [ad-namecache]: procfs_vnops.c
src/sys/modules [ad-namecache]: Makefile
src/sys/modules/compat_crypto_50 [ad-namecache]: Makefile
src/sys/modules/cyclic [ad-namecache]: Makefile
src/sys/modules/drmkms [ad-namecache]: Makefile
src/sys/modules/examples [ad-namecache]: Makefile README
src/sys/modules/examples/luareadhappy [ad-namecache]: luareadhappy.c
src/sys/modules/examples/mapper [ad-namecache]: mapper.c
src/sys/modules/examples/panic_string [ad-namecache]: panic_string.c
src/sys/modules/examples/ping [ad-namecache]: ping.c
src/sys/modules/examples/readhappy_mpsafe [ad-namecache]:
readhappy_mpsafe.c
src/sys/modules/i915drmkms [ad-namecache]: Makefile
src/sys/modules/opencrypto [ad-namecache]: opencrypto.ioconf
src/sys/net [ad-namecache]: Makefile bpf.c bpfjit.c files.net if.c if.h
if_arcsubr.c if_bridge.c if_ethersubr.c if_faith.c if_gif.c
if_gif.h if_gre.c if_ipsec.c if_ipsec.h if_l2tp.c if_l2tp.h
if_loop.c if_media.c if_media.h if_mpls.c if_ppp.c if_pppoe.c
if_sl.c if_spppsubr.c if_srt.c if_stf.c if_tap.c if_tun.c if_vlan.c
net_stats.c net_stats.h pfil.c pktqueue.c ppp_tty.c route.c route.h
rtsock.c rtsock_shared.c
src/sys/net/agr [ad-namecache]: ieee8023ad_lacp.c if_agr.c
src/sys/net/npf [ad-namecache]: npf.c npf_ext_log.c npf_ruleset.c
src/sys/net80211 [ad-namecache]: ieee80211.c ieee80211_input.c
ieee80211_node.c ieee80211_output.c
src/sys/netbt [ad-namecache]: l2cap_signal.c rfcomm_session.c
src/sys/netcan [ad-namecache]: can.c if_canloop.c
src/sys/netinet [ad-namecache]: in_l2tp.c ip_carp.c wqinput.c
src/sys/netinet6 [ad-namecache]: in6_l2tp.c
src/sys/netipsec [ad-namecache]: ipsecif.c key.c
src/sys/netsmb [ad-namecache]: smb_conn.c
src/sys/nfs [ad-namecache]: nfs_bio.c nfs_clntsubs.c nfs_node.c
nfs_subs.c nfs_vfsops.c nfs_vnops.c
src/sys/opencrypto [ad-namecac

CVS commit: src/sys/dev/pci

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 20:39:09 UTC 2020

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

Log Message:
Use the 64-bit PCI DMA tag if it's available, but range-limit to
40-bit because that's what the hardware can do.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/sys/dev/pci/if_stge.c

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



CVS commit: src/crypto/external/bsd/openssh/lib

2020-02-29 Thread Michał Górny
Module Name:src
Committed By:   mgorny
Date:   Sat Feb 29 20:44:16 UTC 2020

Modified Files:
src/crypto/external/bsd/openssh/lib: Makefile

Log Message:
Workaround build failure due to -Werror=format-nonliteral

Reviewed by kamil.


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/crypto/external/bsd/openssh/lib/Makefile

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



CVS commit: src/sys/arch/aarch64

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:09:11 UTC 2020

Modified Files:
src/sys/arch/aarch64/aarch64: aarch64_machdep.c pmapboot.c
src/sys/arch/aarch64/include: pmap.h

Log Message:
replace KSEG pages mapping code with generic function pmapboot_enter_range()


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/aarch64/aarch64/aarch64_machdep.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/aarch64/aarch64/pmapboot.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/aarch64/include/pmap.h

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



CVS commit: src/sys/arch/aarch64/aarch64

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:10:09 UTC 2020

Modified Files:
src/sys/arch/aarch64/aarch64: pmap.c

Log Message:
use pmapboot_enter_range()


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/arch/aarch64/aarch64/pmap.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 21:27:19 UTC 2020

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

Log Message:
Use the 64-bit PCI tag, if available.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/pci/if_rge.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/aarch64/include

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:29:23 UTC 2020

Modified Files:
src/sys/arch/aarch64/include: armreg.h

Log Message:
widen bit PAR_EL1.PAR_PA from [47:12] to [51:12] for ARMv8.2 (and later).

PAR_EL1:[51:48] is RES0 in ARMv8.1 and ARMv8.0.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/aarch64/include/armreg.h

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



CVS commit: src/sys/arch/aarch64/aarch64

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:30:19 UTC 2020

Modified Files:
src/sys/arch/aarch64/aarch64: db_machdep.c

Log Message:
use macro


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/aarch64/aarch64/db_machdep.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sat Feb 29 21:31:55 UTC 2020

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

Log Message:
Use the 64-bit PCI DMA tag, if available.


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/dev/pci/if_txp.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/aarch64/include

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:32:22 UTC 2020

Modified Files:
src/sys/arch/aarch64/include: pmap.h

Log Message:
add helper function aarch64_addresspace() and aarch64_untag_address() to check 
address space, and eliminate address tag


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/aarch64/include/pmap.h

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



CVS commit: src/sys/arch/aarch64

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:34:37 UTC 2020

Modified Files:
src/sys/arch/aarch64/aarch64: fault.c pmap.c pmapboot.c
src/sys/arch/aarch64/include: pte.h

Log Message:
Fix pmap to work correctly with tagged addresses

- when fault, untag from address before passing to uvm/pmap functions
- pmap_extract() checks more strictly and consider the address tag


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/aarch64/aarch64/fault.c
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/aarch64/aarch64/pmap.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/aarch64/aarch64/pmapboot.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/aarch64/include/pte.h

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



CVS commit: src/sys/arch/aarch64/aarch64

2020-02-29 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sat Feb 29 21:36:03 UTC 2020

Modified Files:
src/sys/arch/aarch64/aarch64: aarch64_machdep.c

Log Message:
add support userspace tagged address for aarch64 (experimental)

'sysctl machdep.tagged_address' to set/clear TCR_EL1.TBI0 to enable/disable 
address tagging.
with 'machdep.tagged_address=1', some syscalls may cause problems?


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/aarch64/aarch64/aarch64_machdep.c

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



CVS commit: [ad-namecache] src/sys

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 21:50:45 UTC 2020

Modified Files:
src/sys/arch/arm/arm32 [ad-namecache]: pmap.c
src/sys/arch/i386/include [ad-namecache]: rwlock.h
src/sys/kern [ad-namecache]: kern_idle.c uipc_usrreq.c

Log Message:
Sync with head.


To generate a diff of this commit:
cvs rdiff -u -r1.375.2.3 -r1.375.2.4 src/sys/arch/arm/arm32/pmap.c
cvs rdiff -u -r1.2.144.1 -r1.2.144.2 src/sys/arch/i386/include/rwlock.h
cvs rdiff -u -r1.29.2.3 -r1.29.2.4 src/sys/kern/kern_idle.c
cvs rdiff -u -r1.194.4.2 -r1.194.4.3 src/sys/kern/uipc_usrreq.c

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



CVS commit: [ad-namecache] src/sys/kern

2020-02-29 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Sat Feb 29 22:00:03 UTC 2020

Modified Files:
src/sys/kern [ad-namecache]: vfs_vnops.c

Log Message:
Back out experimental change - not ready for LK_SHARED on VOP_OPEN() just yet.


To generate a diff of this commit:
cvs rdiff -u -r1.204.2.3 -r1.204.2.4 src/sys/kern/vfs_vnops.c

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



CVS commit: src/sys/sys

2020-02-29 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Sat Feb 29 22:09:29 UTC 2020

Modified Files:
src/sys/sys: exec_elf.h

Log Message:
Add defines for MIPS_XHASH (.MIPS.xhash)

MIPS version of GNU_HASH as supported by GNU toolchain.


To generate a diff of this commit:
cvs rdiff -u -r1.165 -r1.166 src/sys/sys/exec_elf.h

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



CVS commit: src/usr.bin/whois

2020-02-29 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Mar  1 02:19:43 UTC 2020

Modified Files:
src/usr.bin/whois: whois.1 whois.c

Log Message:
Merge in changes from OpenBSD 6.6 whois(1).
This improves recursion support and querying whois servers.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/usr.bin/whois/whois.1
cvs rdiff -u -r1.36 -r1.37 src/usr.bin/whois/whois.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/whois

2020-02-29 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Mar  1 02:26:16 UTC 2020

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

Log Message:
Order caps first


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/usr.bin/whois/whois.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 02:28:14 UTC 2020

Modified Files:
src/sys/dev/pci: if_age.c if_alc.c if_ale.c

Log Message:
It doesn't make any sense to pass ETHER_ALIGN as the alignment constraint
to bus_dmamem_alloc().  Use PAGE_SIZE instead.


To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 src/sys/dev/pci/if_age.c
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/if_alc.c
cvs rdiff -u -r1.39 -r1.40 src/sys/dev/pci/if_ale.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/whois

2020-02-29 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Mar  1 02:45:04 UTC 2020

Modified Files:
src/usr.bin/whois: Makefile

Log Message:
RIPE definition no longer exists in source


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.bin/whois/Makefile

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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 02:51:42 UTC 2020

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

Log Message:
- Use the 64-bit PCI DMA tag if available.
- In age_dma_alloc(), ensure that all of the control data end up in the
  same 4GB segment, because the hardware requires this.


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/sys/dev/pci/if_age.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 03:00:31 UTC 2020

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

Log Message:
- Use the 64-bit PCI DMA tag if available.
- Add a comment explaining that if we were to use more than one
  Rx ring / Rx Return ring, all of the Rx-related control data
  would need to be in the same 4G segment.


To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/sys/dev/pci/if_alc.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 03:06:08 UTC 2020

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

Log Message:
Upon further reflection, we actually do need to ensure that the Rx
ring and the Rx Return ring are both in the same 4GB segment.


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/pci/if_alc.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/dkwedge

2020-02-29 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Mar  1 03:19:46 UTC 2020

Modified Files:
src/sys/dev/dkwedge: dk.c

Log Message:
Allow dumping to cgd(4) on a dk(4).

(Technically this also allows dumping to a dk(4) on which there
happens to be a cgd(4) configured, but I'm not sure how to
distinguish that case here.  So don't do that!)


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/sys/dev/dkwedge/dk.c

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



CVS commit: src/sys

2020-02-29 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Sun Mar  1 03:21:54 UTC 2020

Modified Files:
src/sys/arch/xen/xen: xbd_xenbus.c
src/sys/dev: cgd.c dksubr.c dkvar.h ld.c
src/sys/dev/ata: wd.c
src/sys/dev/raidframe: rf_netbsdkintf.c
src/sys/dev/scsipi: sd.c

Log Message:
Add a flag to dk_dump for virtual disk devices.

If a disk is backed by a physical medium other than itself, such as
cgd(4), then it passes DK_DUMP_RECURSIVE to disable the recursion
detection for dk_dump.

If, however, a device represents a physical medium on its own, such
as wd(4), then it passes 0 instead.

With this, I can now dump to dk on cgd on dk on wd.


To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 src/sys/arch/xen/xen/xbd_xenbus.c
cvs rdiff -u -r1.119 -r1.120 src/sys/dev/cgd.c
cvs rdiff -u -r1.111 -r1.112 src/sys/dev/dksubr.c
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/dkvar.h
cvs rdiff -u -r1.108 -r1.109 src/sys/dev/ld.c
cvs rdiff -u -r1.457 -r1.458 src/sys/dev/ata/wd.c
cvs rdiff -u -r1.379 -r1.380 src/sys/dev/raidframe/rf_netbsdkintf.c
cvs rdiff -u -r1.327 -r1.328 src/sys/dev/scsipi/sd.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

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 05:39:05 UTC 2020

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

Log Message:
Use the 64-bit PCI DMA tag if avalable.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/pci/if_cas.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/ic

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 05:50:56 UTC 2020

Modified Files:
src/sys/dev/ic: gem.c gemvar.h

Log Message:
- Support 64-bit DMA addresses for the Tx and Rx ring addresses.
- g/c and unused define.


To generate a diff of this commit:
cvs rdiff -u -r1.128 -r1.129 src/sys/dev/ic/gem.c
cvs rdiff -u -r1.26 -r1.27 src/sys/dev/ic/gemvar.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/pci

2020-02-29 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Sun Mar  1 05:51:46 UTC 2020

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

Log Message:
Use the 64-bit PCI DMA tag if available.


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/dev/pci/if_gem_pci.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/audio

2020-02-29 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Sun Mar  1 07:35:33 UTC 2020

Modified Files:
src/sys/dev/audio: audio.c

Log Message:
Reinitialize the sticky parameters whenever the hardware format is changed.
When the number of the hardware channels becomes less than the number of
channels that sticky parameters remember, subsequent open("/dev/sound") will
fail without this treatment.  This is for rev 1.43.


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/sys/dev/audio/audio.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/audio

2020-02-29 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Sun Mar  1 07:40:04 UTC 2020

Modified Files:
src/sys/dev/audio: audio.c

Log Message:
Fix wrong parameter displayed in debug messages.


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/dev/audio/audio.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/audio

2020-02-29 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Sun Mar  1 07:42:08 UTC 2020

Modified Files:
src/sys/dev/audio: audio.c

Log Message:
Improve an error message about round_blocksize.


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/sys/dev/audio/audio.c

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