CVS commit: src/sys/net

2019-05-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri May 10 08:24:54 UTC 2019

Modified Files:
src/sys/net: if_media.c

Log Message:
Use %08x to print ifmedia word (IFMEDIA_DEBUG).


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/net/if_media.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/broadcom

2019-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri May 10 08:28:50 UTC 2019

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_gpio.c

Log Message:
Take a lead from sys/dev/gpio/gpio.c:gpio_intr_str and report edge vs
level. etc interrupt type.

>From yarl-baudig


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/broadcom/bcm2835_gpio.c

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



CVS commit: src/lib

2019-05-10 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Fri May 10 09:42:46 UTC 2019

Modified Files:
src/lib: Makefile

Log Message:
Don't build compat LLVM PIC libraries since it is unused if MKCOMPATX11 == "no".


To generate a diff of this commit:
cvs rdiff -u -r1.270 -r1.271 src/lib/Makefile

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



CVS commit: src/tests/lib/libc/sys

2019-05-10 Thread Michał Górny
Module Name:src
Committed By:   mgorny
Date:   Fri May 10 16:24:35 UTC 2019

Modified Files:
src/tests/lib/libc/sys: t_ptrace_amd64_wait.h t_ptrace_i386_wait.h

Log Message:
Add tests for PT_SETREGS


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/tests/lib/libc/sys/t_ptrace_amd64_wait.h
cvs rdiff -u -r1.7 -r1.8 src/tests/lib/libc/sys/t_ptrace_i386_wait.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/i386/include

2019-05-10 Thread Michał Górny
Module Name:src
Committed By:   mgorny
Date:   Fri May 10 16:27:03 UTC 2019

Modified Files:
src/sys/arch/i386/include: reg.h

Log Message:
Fill 'struct fpreg' & 'struct xmmregs' in

The 'struct fpreg' data type used by PT_GETFPREGS, and 'struct xmmregs'
used by PT_GETXMMREGS are currently opaque.  Define them to contain
correct data structs instead, the same way they are defined for amd64.
For 'struct fpreg' this means 'struct save87', and for 'struct xmmregs'
this means 'struct fxsave'.  This makes it more transparent for
consumers how the data is formatted, and allows using it without need
for explicit casts.

Reviewed by .


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/i386/include/reg.h

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



CVS commit: src/tests/lib/libc/sys

2019-05-10 Thread Michał Górny
Module Name:src
Committed By:   mgorny
Date:   Fri May 10 16:28:00 UTC 2019

Modified Files:
src/tests/lib/libc/sys: t_ptrace_x86_wait.h

Log Message:
Use newly-filled i386 reg structs in PT_GETFPREGS & PT_GETXMMREGS tests.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/tests/lib/libc/sys/t_ptrace_x86_wait.h

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



CVS commit: src/usr.sbin/cpuctl/arch

2019-05-10 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Fri May 10 16:42:57 UTC 2019

Modified Files:
src/usr.sbin/cpuctl/arch: cpuctl_i386.h i386-asm.S i386.c x86_64-asm.S

Log Message:
Get CPU topology data for AMD processors.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/cpuctl/arch/cpuctl_i386.h
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/cpuctl/arch/i386-asm.S
cvs rdiff -u -r1.95 -r1.96 src/usr.sbin/cpuctl/arch/i386.c
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/cpuctl/arch/x86_64-asm.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/arm32

2019-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri May 10 16:43:10 UTC 2019

Modified Files:
src/sys/arch/arm/arm32: arm32_machdep.c

Log Message:
Fix a printf


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/sys/arch/arm/arm32/arm32_machdep.c

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



CVS commit: src/tests/lib/libc/sys

2019-05-10 Thread Michał Górny
Module Name:src
Committed By:   mgorny
Date:   Fri May 10 17:34:27 UTC 2019

Modified Files:
src/tests/lib/libc/sys: t_ptrace_x86_wait.h

Log Message:
Remove obsolete size asserts.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/tests/lib/libc/sys/t_ptrace_x86_wait.h

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



CVS commit: src/tests/lib/libc/sys

2019-05-10 Thread Michał Górny
Module Name:src
Committed By:   mgorny
Date:   Fri May 10 18:07:10 UTC 2019

Modified Files:
src/tests/lib/libc/sys: t_ptrace_x86_wait.h

Log Message:
Add PT_SET*REGS tests for mm/xmm registers.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/tests/lib/libc/sys/t_ptrace_x86_wait.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

2019-05-10 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri May 10 18:21:01 UTC 2019

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

Log Message:
Clean up, and add sanity checks on the microcode lengths.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/x86/x86/cpu_ucode_intel.c

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