CVS commit: src/sys/arch/macppc/dev

2020-06-11 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Fri Jun 12 06:44:57 UTC 2020

Modified Files:
src/sys/arch/macppc/dev: ki2c.c

Log Message:
more proplib API catchup


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/macppc/dev/ki2c.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/sparc64/dev

2020-06-11 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Fri Jun 12 03:41:57 UTC 2020

Modified Files:
src/sys/arch/sparc64/dev: jbus-i2c.c pcfiic_ebus.c

Log Message:
Update for proplib(3) API changes.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc64/dev/jbus-i2c.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/sparc64/dev/pcfiic_ebus.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-06-11 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Fri Jun 12 03:32:30 UTC 2020

Modified Files:
src/sys/arch/sparc64/sparc64: autoconf.c
src/sys/dev/fdt: fdt_i2c.c
src/sys/dev/i2c: i2c.c

Log Message:
i2c-indirect-config == false  -->  i2c-no-indirect-config == true


To generate a diff of this commit:
cvs rdiff -u -r1.218 -r1.219 src/sys/arch/sparc64/sparc64/autoconf.c
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/fdt/fdt_i2c.c
cvs rdiff -u -r1.73 -r1.74 src/sys/dev/i2c/i2c.c

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



CVS commit: src/lib/libpam/modules/pam_krb5

2020-06-11 Thread Santhosh Raju
Module Name:src
Committed By:   fox
Date:   Fri Jun 12 01:20:32 UTC 2020

Modified Files:
src/lib/libpam/modules/pam_krb5: pam_krb5.c

Log Message:
lib/libpam: Fix the possible -Werror=stringop-truncation

Replace strncpy(3) with the safer strlcpy(3) and adjust the code.

Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag.

Reviewed by: kamil@, christos@


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/lib/libpam/modules/pam_krb5/pam_krb5.c

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



CVS commit: src/common/lib/libprop

2020-06-11 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Fri Jun 12 00:02:26 UTC 2020

Modified Files:
src/common/lib/libprop: prop_object_impl.h

Log Message:
Change previous to only apply when building with clang.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/common/lib/libprop/prop_object_impl.h

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



CVS commit: src/share/misc

2020-06-11 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu Jun 11 23:19:53 UTC 2020

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

Log Message:
QOI


To generate a diff of this commit:
cvs rdiff -u -r1.302 -r1.303 src/share/misc/acronyms
cvs rdiff -u -r1.306 -r1.307 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/sys/uvm

2020-06-11 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Thu Jun 11 22:25:51 UTC 2020

Modified Files:
src/sys/uvm: uvm_pglist.c

Log Message:
Counter tweaks:

- Don't need to count anonpages+filepages any more; clean+unknown+dirty for
  each kind of page can be summed to get the totals.

- Track the number of free pages with a counter so that it's one less thing
  for the allocator to do, which opens up further options there.

- Remove cpu_count_sync_one(). It has no users and doesn't save a whole lot.
  For the cheap option, give cpu_count_sync() a boolean parameter indicating
  that a cached value is okay, and rate limit the updates for cached values
  to hz.


To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 src/sys/uvm/uvm_pglist.c

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



CVS commit: src/common/lib/libprop

2020-06-11 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Thu Jun 11 22:25:44 UTC 2020

Modified Files:
src/common/lib/libprop: prop_object_impl.h

Log Message:
Unbreak clang builds by removing questionable linker warning sections
trggered all over the place.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/common/lib/libprop/prop_object_impl.h

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



CVS commit: src

2020-06-11 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Thu Jun 11 22:21:05 UTC 2020

Modified Files:
src/sys/compat/linux/common: linux_misc.c
src/sys/compat/linux32/common: linux32_sysinfo.c
src/sys/kern: subr_cpu.c vfs_vnode.c vfs_vnops.c
src/sys/miscfs/procfs: procfs_linux.c
src/sys/sys: cpu_data.h
src/sys/uvm: uvm_loan.c uvm_meter.c uvm_page.c uvm_pdaemon.c
uvm_pdpolicy_clock.c uvm_stat.c
src/usr.bin/vmstat: vmstat.c

Log Message:
Counter tweaks:

- Don't need to count anonpages+filepages any more; clean+unknown+dirty for
  each kind of page can be summed to get the totals.

- Track the number of free pages with a counter so that it's one less thing
  for the allocator to do, which opens up further options there.

- Remove cpu_count_sync_one().  It has no users and doesn't save a whole lot.
  For the cheap option, give cpu_count_sync() a boolean parameter indicating
  that a cached value is okay, and rate limit the updates for cached values
  to hz.


To generate a diff of this commit:
cvs rdiff -u -r1.250 -r1.251 src/sys/compat/linux/common/linux_misc.c
cvs rdiff -u -r1.12 -r1.13 src/sys/compat/linux32/common/linux32_sysinfo.c
cvs rdiff -u -r1.14 -r1.15 src/sys/kern/subr_cpu.c
cvs rdiff -u -r1.123 -r1.124 src/sys/kern/vfs_vnode.c
cvs rdiff -u -r1.212 -r1.213 src/sys/kern/vfs_vnops.c
cvs rdiff -u -r1.85 -r1.86 src/sys/miscfs/procfs/procfs_linux.c
cvs rdiff -u -r1.50 -r1.51 src/sys/sys/cpu_data.h
cvs rdiff -u -r1.103 -r1.104 src/sys/uvm/uvm_loan.c
cvs rdiff -u -r1.78 -r1.79 src/sys/uvm/uvm_meter.c
cvs rdiff -u -r1.239 -r1.240 src/sys/uvm/uvm_page.c
cvs rdiff -u -r1.128 -r1.129 src/sys/uvm/uvm_pdaemon.c
cvs rdiff -u -r1.38 -r1.39 src/sys/uvm/uvm_pdpolicy_clock.c
cvs rdiff -u -r1.44 -r1.45 src/sys/uvm/uvm_stat.c
cvs rdiff -u -r1.239 -r1.240 src/usr.bin/vmstat/vmstat.c

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



CVS commit: src

2020-06-11 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Thu Jun 11 19:20:47 UTC 2020

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: arc.c
src/external/cddl/osnet/sys/kern: misc.c
src/sys/arch/alpha/alpha: machdep.c
src/sys/arch/atari/atari: machdep.c
src/sys/arch/cesfic/cesfic: machdep.c
src/sys/arch/emips/emips: machdep.c
src/sys/arch/evbppc/explora: machdep.c
src/sys/arch/evbppc/virtex: machdep.c
src/sys/arch/evbppc/walnut: machdep.c
src/sys/arch/ews4800mips/ews4800mips: machdep.c
src/sys/arch/hp300/hp300: machdep.c
src/sys/arch/hppa/hppa: machdep.c
src/sys/arch/luna68k/luna68k: machdep.c
src/sys/arch/mac68k/mac68k: machdep.c
src/sys/arch/mips/mips: cpu_subr.c
src/sys/arch/mvme68k/mvme68k: machdep.c
src/sys/arch/news68k/news68k: machdep.c
src/sys/arch/next68k/next68k: machdep.c
src/sys/arch/powerpc/booke: booke_machdep.c
src/sys/arch/powerpc/ibm4xx: ibm4xx_machdep.c
src/sys/arch/powerpc/oea: oea_machdep.c
src/sys/arch/riscv/riscv: riscv_machdep.c
src/sys/arch/sgimips/sgimips: machdep.c
src/sys/arch/sh3/sh3: sh3_machdep.c
src/sys/arch/sparc/sparc: machdep.c
src/sys/arch/sparc64/sparc64: machdep.c
src/sys/arch/sun2/sun2: machdep.c
src/sys/arch/sun3/sun3: machdep.c
src/sys/arch/sun3/sun3x: machdep.c
src/sys/arch/vax/vax: machdep.c
src/sys/arch/x68k/x68k: machdep.c
src/sys/compat/linux/common: linux_misc.c
src/sys/compat/linux32/common: linux32_sysinfo.c
src/sys/dev: ccd.c
src/sys/fs/tmpfs: tmpfs_mem.c
src/sys/kern: init_main.c kern_module.c kern_proc.c vfs_bio.c
src/sys/miscfs/procfs: procfs_linux.c
src/sys/rump/librump/rumpkern: vm.c
src/sys/ufs/chfs: chfs_subr.c
src/sys/ufs/lfs: lfs_bio.c
src/sys/uvm: uvm_extern.h uvm_glue.c uvm_meter.c uvm_page.c
uvm_pdaemon.c uvm_pdpolicy_clock.c uvm_pglist.c uvm_stat.c

Log Message:
uvm_availmem(): give it a boolean argument to specify whether a recent
cached value will do, or if the very latest total must be fetched.  It can
be called thousands of times a second and fetching the totals impacts not
only the calling LWP but other CPUs doing unrelated activity in the VM
system.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/arc.c
cvs rdiff -u -r1.8 -r1.9 src/external/cddl/osnet/sys/kern/misc.c
cvs rdiff -u -r1.359 -r1.360 src/sys/arch/alpha/alpha/machdep.c
cvs rdiff -u -r1.182 -r1.183 src/sys/arch/atari/atari/machdep.c
cvs rdiff -u -r1.70 -r1.71 src/sys/arch/cesfic/cesfic/machdep.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/emips/emips/machdep.c
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/evbppc/explora/machdep.c
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/evbppc/virtex/machdep.c
cvs rdiff -u -r1.58 -r1.59 src/sys/arch/evbppc/walnut/machdep.c
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/ews4800mips/ews4800mips/machdep.c
cvs rdiff -u -r1.233 -r1.234 src/sys/arch/hp300/hp300/machdep.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/hppa/hppa/machdep.c
cvs rdiff -u -r1.105 -r1.106 src/sys/arch/luna68k/luna68k/machdep.c
cvs rdiff -u -r1.357 -r1.358 src/sys/arch/mac68k/mac68k/machdep.c
cvs rdiff -u -r1.46 -r1.47 src/sys/arch/mips/mips/cpu_subr.c
cvs rdiff -u -r1.157 -r1.158 src/sys/arch/mvme68k/mvme68k/machdep.c
cvs rdiff -u -r1.107 -r1.108 src/sys/arch/news68k/news68k/machdep.c
cvs rdiff -u -r1.114 -r1.115 src/sys/arch/next68k/next68k/machdep.c
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/powerpc/booke/booke_machdep.c
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/powerpc/ibm4xx/ibm4xx_machdep.c
cvs rdiff -u -r1.78 -r1.79 src/sys/arch/powerpc/oea/oea_machdep.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/riscv/riscv/riscv_machdep.c
cvs rdiff -u -r1.149 -r1.150 src/sys/arch/sgimips/sgimips/machdep.c
cvs rdiff -u -r1.109 -r1.110 src/sys/arch/sh3/sh3/sh3_machdep.c
cvs rdiff -u -r1.333 -r1.334 src/sys/arch/sparc/sparc/machdep.c
cvs rdiff -u -r1.297 -r1.298 src/sys/arch/sparc64/sparc64/machdep.c
cvs rdiff -u -r1.82 -r1.83 src/sys/arch/sun2/sun2/machdep.c
cvs rdiff -u -r1.211 -r1.212 src/sys/arch/sun3/sun3/machdep.c
cvs rdiff -u -r1.138 -r1.139 src/sys/arch/sun3/sun3x/machdep.c
cvs rdiff -u -r1.195 -r1.196 src/sys/arch/vax/vax/machdep.c
cvs rdiff -u -r1.202 -r1.203 src/sys/arch/x68k/x68k/machdep.c
cvs rdiff -u -r1.249 -r1.250 src/sys/compat/linux/common/linux_misc.c
cvs rdiff -u -r1.11 -r1.12 src/sys/compat/linux32/common/linux32_sysinfo.c
cvs rdiff -u -r1.183 -r1.184 src/sys/dev/ccd.c
cvs rdiff -u -r1.12 -r1.13 src/sys/fs/tmpfs/tmpfs_mem.c
cvs rdiff -u -r1.526 -r1.527 src/sys/kern/init_main.c
cvs rdiff -u -r1.150 -r1.151 src/sys/kern/kern_module.c
cvs rdiff -u -r1.254 -r1.255 src/sys/kern/kern_proc.c
cvs rdiff -u -r1.295 -r1.296 src/sys/kern/vfs_bio.c
cvs rdiff -u -r1.84 -r1.85 src/sys/miscfs/procfs/p

CVS commit: src/lib/libpthread

2020-06-11 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Thu Jun 11 18:41:22 UTC 2020

Modified Files:
src/lib/libpthread: pthread_mutex.c

Log Message:
Adjust memory barriers.


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/lib/libpthread/pthread_mutex.c

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



CVS commit: src/lib/libpthread

2020-06-11 Thread Andrew Doran
Module Name:src
Committed By:   ad
Date:   Thu Jun 11 18:42:02 UTC 2020

Modified Files:
src/lib/libpthread: pthread.c pthread_tsd.c

Log Message:
Drop self->pt_lock before clearing TSD / malloc TSD.


To generate a diff of this commit:
cvs rdiff -u -r1.175 -r1.176 src/lib/libpthread/pthread.c
cvs rdiff -u -r1.22 -r1.23 src/lib/libpthread/pthread_tsd.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/dhcpcd/sbin/dhcpcd

2020-06-11 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Thu Jun 11 16:05:54 UTC 2020

Modified Files:
src/external/bsd/dhcpcd/sbin/dhcpcd: Makefile

Log Message:
dhcpcd: Disable priviledge separation and sandboxing for SMALLPROG builds

It's a fair chunk of code and is probably safe enough for our ramdisks.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/external/bsd/dhcpcd/sbin/dhcpcd/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-06-11 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu Jun 11 14:22:10 UTC 2020

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

Log Message:
forgot to commit a header change, again...


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/pci/radeonfbvar.h

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



CVS commit: src/sbin/drvctl

2020-06-11 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Thu Jun 11 13:49:57 UTC 2020

Modified Files:
src/sbin/drvctl: drvctl.c

Log Message:
Update for proplib(3) API changes.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sbin/drvctl/drvctl.c

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



CVS commit: src

2020-06-11 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Thu Jun 11 13:36:20 UTC 2020

Modified Files:
src/share/man/man4: bpf.4
src/sys/net: bpf.c bpf.h bpfdesc.h

Log Message:
bpf(4): Add ioctls BIOCSETWF and BIOCLOCK

Once BIOCLOCK is executed, the device becomes locked which prevents the
execution of ioctl(2) commands which can change the underlying parameters
of the bpf(4) device. An example might be the setting of bpf(4) filter
programs or attaching to different network interfaces.

BIOCSETWF can be used to set write filters for outgoing packets.
Currently if a bpf(4) consumer is compromised, the bpf(4) descriptor can
essentially be used as a raw socket, regardless of consumer's UID.
Write filters give users the ability to constrain which packets can be sent
through the bpf(4) descriptor.

Taken from OpenBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/share/man/man4/bpf.4
cvs rdiff -u -r1.236 -r1.237 src/sys/net/bpf.c
cvs rdiff -u -r1.74 -r1.75 src/sys/net/bpf.h
cvs rdiff -u -r1.46 -r1.47 src/sys/net/bpfdesc.h

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



CVS commit: src/bin/expr

2020-06-11 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Thu Jun 11 13:08:08 UTC 2020

Modified Files:
src/bin/expr: expr.y

Log Message:
Fix typo


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/bin/expr/expr.y

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



CVS commit: src/tests/lib/libpthread

2020-06-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Jun 11 11:40:54 UTC 2020

Modified Files:
src/tests/lib/libpthread: t_mtx.c

Log Message:
Do not destroy mutices that failed to init - fixes a run with
PTHREAD_DIAGASSERT set to "a". Pointed out by joerg.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libpthread/t_mtx.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/imx/fdt

2020-06-11 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Jun 11 11:05:29 UTC 2020

Modified Files:
src/sys/arch/arm/imx/fdt: imx6_iomux.c

Log Message:
Match fsl,imx7d-iomuxc


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

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



CVS commit: [netbsd-9] src/doc

2020-06-11 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Thu Jun 11 11:04:12 UTC 2020

Modified Files:
src/doc [netbsd-9]: CHANGES-9.1

Log Message:
Tickets #957 & #958.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.64 -r1.1.2.65 src/doc/CHANGES-9.1

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



CVS commit: [netbsd-9] src/sys/dev/usb

2020-06-11 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Thu Jun 11 11:03:22 UTC 2020

Modified Files:
src/sys/dev/usb [netbsd-9]: if_run.c

Log Message:
Pull up following revision (requested by martin in ticket #958):

src/sys/dev/usb/if_run.c: revision 1.41

Better bounds checking for oversized packets, to avoid kernel memory
corruption. Pointed out by Ilja Van Sprundel.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.32.4.1 src/sys/dev/usb/if_run.c

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



CVS commit: [netbsd-9] src/sys/dev/usb

2020-06-11 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Thu Jun 11 11:01:20 UTC 2020

Modified Files:
src/sys/dev/usb [netbsd-9]: if_otus.c

Log Message:
Pull up following revision (requested by martin in ticket #957):

src/sys/dev/usb/if_otus.c: revision 1.45 (via patch)

Stricter bounds check for some packet length we get from the usb chip,
to make sure we do not corrupt kernel memory.
Pointed out by Ilja Van Sprundel.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.38.2.1 src/sys/dev/usb/if_otus.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/imx/fdt

2020-06-11 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Jun 11 11:01:16 UTC 2020

Modified Files:
src/sys/arch/arm/imx/fdt: imx6_usb.c imx7d_ccm.c

Log Message:
Add i.MX7 USB support


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/imx/fdt/imx6_usb.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/imx/fdt/imx7d_ccm.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/usb

2020-06-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Jun 11 09:56:57 UTC 2020

Modified Files:
src/sys/dev/usb: if_run.c

Log Message:
Better bounds checking for oversized packets, to avoid kernel memory
corruption. Pointed out by Ilja Van Sprundel.


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

2020-06-11 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Jun 11 09:51:37 UTC 2020

Modified Files:
src/sys/dev/usb: if_otus.c

Log Message:
Stricter bounds check for some packet length we get from the usb chip,
to make sure we do not corrupt kernel memory.
Pointed out by Ilja Van Sprundel.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/sys/dev/usb/if_otus.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-06-11 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jun 11 09:23:13 UTC 2020

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

Log Message:
No functional change:

 - Rename some macros and function.
 - Add newline.


To generate a diff of this commit:
cvs rdiff -u -r1.677 -r1.678 src/sys/dev/pci/if_wm.c

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



CVS commit: src/doc

2020-06-11 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu Jun 11 09:17:11 UTC 2020

Modified Files:
src/doc: 3RDPARTY

Log Message:
bsd-family-tree


To generate a diff of this commit:
cvs rdiff -u -r1.1724 -r1.1725 src/doc/3RDPARTY

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/ixgbe

2020-06-11 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Jun 11 09:16:05 UTC 2020

Modified Files:
src/sys/dev/pci/ixgbe: ixgbe.c ixv.c

Log Message:
 Fix typo. No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.228 -r1.229 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.148 -r1.149 src/sys/dev/pci/ixgbe/ixv.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

2020-06-11 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu Jun 11 09:15:31 UTC 2020

Modified Files:
src/share/misc: bsd-family-tree

Log Message:
Sync with r359561


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/share/misc/bsd-family-tree

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-06-11 Thread Jaromir Dolecek
Module Name:src
Committed By:   jdolecek
Date:   Thu Jun 11 09:02:05 UTC 2020

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.1401 -r1.1402 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1400 -r1.1401 src/sys/dev/pci/pcidevs_data.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-06-11 Thread Jaromir Dolecek
Module Name:src
Committed By:   jdolecek
Date:   Thu Jun 11 09:01:27 UTC 2020

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
add Intel XMM 7360 LTE Modem


To generate a diff of this commit:
cvs rdiff -u -r1.1414 -r1.1415 src/sys/dev/pci/pcidevs

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-06-11 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu Jun 11 07:51:26 UTC 2020

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

Log Message:
only read the backlight level register on mobility chips


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

2020-06-11 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu Jun 11 07:46:59 UTC 2020

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

Log Message:
reduce stack usage in radeonfb_pickres() and radeonfb_set_cursor()


To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 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.