CVS commit: src/games/fortune/datfiles

2017-07-02 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sun Jul  2 07:02:47 UTC 2017

Modified Files:
src/games/fortune/datfiles: fortunes2

Log Message:
typo


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/games/fortune/datfiles/fortunes2

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



CVS commit: src/usr.bin/calendar/calendars

2017-07-02 Thread John Nemeth
Module Name:src
Committed By:   jnemeth
Date:   Sun Jul  2 08:25:52 UTC 2017

Modified Files:
src/usr.bin/calendar/calendars: calendar.holiday

Log Message:
Only 35 years late.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/usr.bin/calendar/calendars/calendar.holiday

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

2017-07-02 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sun Jul  2 09:02:06 UTC 2017

Modified Files:
src/sys/arch/i386/i386: gdt.c mptramp.S
src/sys/arch/i386/include: gdt.h

Log Message:
Define MINGDTSIZ/MAXGDTSIZ in bytes, not in number of slots; same as
amd64.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/arch/i386/i386/gdt.c
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/i386/i386/mptramp.S
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/i386/include/gdt.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/amd64/amd64

2017-07-02 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sun Jul  2 09:02:51 UTC 2017

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

Log Message:
Hide the computation in a macro.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/amd64/amd64/gdt.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

2017-07-02 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sun Jul  2 10:12:45 UTC 2017

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

Log Message:
Define __HAVE_CPU_UAREA_ALLOC_IDLELWP


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/evbarm/conf/std.beagle

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

2017-07-02 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sun Jul  2 10:52:35 UTC 2017

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

Log Message:
Define __HAVE_CPU_UAREA_ALLOC_IDLELWP


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/evbarm/conf/std.vexpress

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

2017-07-02 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sun Jul  2 11:16:50 UTC 2017

Modified Files:
src/sys/arch/i386/i386: gdt.c
src/sys/arch/i386/include: segments.h

Log Message:
Use a bitmap-based allocator for i386, same as amd64. Several functions
are now identical - or nearly identical - on both sides. I couldn't test
this change on xen, because I'm having some unrelated issues with my VM
and I've spent enough time not understanding what's wrong with it.


To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/sys/arch/i386/i386/gdt.c
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/i386/include/segments.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

2017-07-02 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sun Jul  2 11:21:14 UTC 2017

Modified Files:
src/sys/arch/amd64/amd64: gdt.c
src/sys/arch/i386/i386: gdt.c

Log Message:
Put some ()s in the macro (kre).


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/amd64/amd64/gdt.c
cvs rdiff -u -r1.63 -r1.64 src/sys/arch/i386/i386/gdt.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/pad

2017-07-02 Thread Nathanial Sloss
Module Name:src
Committed By:   nat
Date:   Sun Jul  2 13:32:51 UTC 2017

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

Log Message:
If a particular pad device is opened, ie pad1 then configure and use pad1
if it is not already configured.

This improves scriptability as you will know the particular pad(4) device
you have opened.

pad(4) devices still have a cloning interface if pad device (minor
number 254) is opened it will attach the next free device.  This action
can be repeated.

XXX update MAKEDEV scripts to make /dev/pad the cloning device.

Ok christos@.


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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 13:36:46 UTC 2017

Modified Files:
src/sys/arch/arm/sunxi: files.sunxi sun6i_a31_ccu.c sun8i_h3_ccu.c
src/sys/arch/evbarm/conf: SUNXI
Added Files:
src/sys/arch/arm/sunxi: sun6i_a31_gpio.c sun8i_h3_gpio.c sunxi_gpio.c
sunxi_gpio.h

Log Message:
Add basic FDT GPIO support.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/sunxi/files.sunxi
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/sunxi/sun6i_a31_ccu.c
cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/sunxi/sun6i_a31_gpio.c \
src/sys/arch/arm/sunxi/sun8i_h3_gpio.c \
src/sys/arch/arm/sunxi/sunxi_gpio.c src/sys/arch/arm/sunxi/sunxi_gpio.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/sunxi/sun8i_h3_ccu.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/evbarm/conf/SUNXI

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



CVS commit: src/sys/arch/m68k/include

2017-07-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jul  2 14:10:23 UTC 2017

Modified Files:
src/sys/arch/m68k/include: cpuframe.h

Log Message:
remove f_pad, conflicts with new  define.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/m68k/include/cpuframe.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/amiga/amiga

2017-07-02 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jul  2 14:10:53 UTC 2017

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

Log Message:
remove the single use of f_pad...


To generate a diff of this commit:
cvs rdiff -u -r1.135 -r1.136 src/sys/arch/amiga/amiga/trap.c

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



CVS commit: [netbsd-8] src/sys/arch/arm/allwinner

2017-07-02 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jul  2 15:07:13 UTC 2017

Modified Files:
src/sys/arch/arm/allwinner [netbsd-8]: awin_can.c

Log Message:
In the RX IRQ handler, release the receive buffer in the error paths.
Fix a hang I've been seeing under high traffic.


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

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



CVS commit: [netbsd-8] src/sys/arch/arm/allwinner

2017-07-02 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jul  2 15:08:29 UTC 2017

Modified Files:
src/sys/arch/arm/allwinner [netbsd-8]: awin_can.c

Log Message:
Revert previous; wrong branch


To generate a diff of this commit:
cvs rdiff -u -r1.2.2.1 -r1.2.2.2 src/sys/arch/arm/allwinner/awin_can.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/allwinner

2017-07-02 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sun Jul  2 15:09:53 UTC 2017

Modified Files:
src/sys/arch/arm/allwinner: awin_can.c

Log Message:
In the RX IRQ handler, release the receive buffer in the error paths.
Fix a hang I've been seeing under high traffic.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/allwinner/awin_can.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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 15:27:58 UTC 2017

Modified Files:
src/sys/dev/fdt: fdt_pinctrl.c fdt_subr.c fdtvar.h

Log Message:
Fix the pinctrl api to match the spec. A pinctrl config can have more
than one xref, and an xref may have specifier data associated with it.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/fdt/fdt_pinctrl.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/fdt/fdt_subr.c
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/fdt/fdtvar.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/arm/sunxi

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 15:28:25 UTC 2017

Modified Files:
src/sys/arch/arm/sunxi: sun6i_a31_gpio.c sunxi_gpio.c sunxi_gpio.h

Log Message:
Enable sunxi pinctrl support


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/sunxi/sun6i_a31_gpio.c \
src/sys/arch/arm/sunxi/sunxi_gpio.c src/sys/arch/arm/sunxi/sunxi_gpio.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/arm

2017-07-02 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sun Jul  2 16:06:42 UTC 2017

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

Log Message:
Trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/arm/arm/syscall.c
cvs rdiff -u -r1.112 -r1.113 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/sys/arch/arm

2017-07-02 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sun Jul  2 16:16:44 UTC 2017

Modified Files:
src/sys/arch/arm/arm: syscall.c undefined.c
src/sys/arch/arm/arm32: arm32_boot.c arm32_machdep.c fault.c

Log Message:
Consistency around the user trapframe for all LWPs and there's no need to
keep assigning it in kernel entry points.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/arch/arm/arm/syscall.c
cvs rdiff -u -r1.59 -r1.60 src/sys/arch/arm/arm/undefined.c
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/arm/arm32/arm32_boot.c
cvs rdiff -u -r1.113 -r1.114 src/sys/arch/arm/arm32/arm32_machdep.c
cvs rdiff -u -r1.103 -r1.104 src/sys/arch/arm/arm32/fault.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/samsung

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 16:19:47 UTC 2017

Modified Files:
src/sys/arch/arm/samsung: exynos_pinctrl.c

Log Message:
Adjust to new pinctrl API


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/samsung/exynos_pinctrl.c

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



CVS commit: src

2017-07-02 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jul  2 16:41:33 UTC 2017

Modified Files:
src/lib/libpthread: TODO pthread.c pthread_attr.c
pthread_attr_getguardsize.3 pthread_int.h
src/sys/kern: exec_subr.c
src/sys/uvm: uvm_meter.c uvm_param.h
src/tests/lib/libpthread: t_join.c

Log Message:
Export the guard size of the main thread via vm.guard_size. Add a
complementary writable sysctl for the initial guard size of threads
created via pthread_create. Let the existing attribut accessors do the
right thing. Raise the default guard size for threads to 64KB.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/lib/libpthread/TODO
cvs rdiff -u -r1.147 -r1.148 src/lib/libpthread/pthread.c
cvs rdiff -u -r1.16 -r1.17 src/lib/libpthread/pthread_attr.c
cvs rdiff -u -r1.3 -r1.4 src/lib/libpthread/pthread_attr_getguardsize.3
cvs rdiff -u -r1.93 -r1.94 src/lib/libpthread/pthread_int.h
cvs rdiff -u -r1.81 -r1.82 src/sys/kern/exec_subr.c
cvs rdiff -u -r1.65 -r1.66 src/sys/uvm/uvm_meter.c
cvs rdiff -u -r1.36 -r1.37 src/sys/uvm/uvm_param.h
cvs rdiff -u -r1.8 -r1.9 src/tests/lib/libpthread/t_join.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

2017-07-02 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Sun Jul  2 17:13:08 UTC 2017

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

Log Message:
Do not look at environmental variables for suid/guid binaries.


To generate a diff of this commit:
cvs rdiff -u -r1.148 -r1.149 src/lib/libpthread/pthread.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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 18:06:45 UTC 2017

Modified Files:
src/sys/arch/arm/sunxi: files.sunxi
src/sys/arch/evbarm/conf: SUNXI
Added Files:
src/sys/arch/arm/sunxi: sunxi_rsb.c sunxi_rsb.h

Log Message:
Add P2WI/RSB driver, based on awin_p2wi.c.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/sunxi/files.sunxi
cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/sunxi/sunxi_rsb.c \
src/sys/arch/arm/sunxi/sunxi_rsb.h
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/evbarm/conf/SUNXI

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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 18:19:26 UTC 2017

Modified Files:
src/sys/arch/arm/sunxi: sunxi_gpio.c

Log Message:
Fix typo in a compat string.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/sunxi/sunxi_gpio.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

2017-07-02 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Sun Jul  2 18:22:29 UTC 2017

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

Log Message:
Define __HAVE_CPU_UAREA_ALLOC_IDLELWP


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

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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 18:21:52 UTC 2017

Modified Files:
src/sys/arch/arm/samsung: exynos_pinctrl.c

Log Message:
Configure pin defaults at attach


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/samsung/exynos_pinctrl.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/samsung

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 18:27:45 UTC 2017

Modified Files:
src/sys/arch/arm/samsung: exynos_i2c.c

Log Message:
No need to explicitly set pinctrl config 0 now


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/samsung/exynos_i2c.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/sunxi

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 21:13:06 UTC 2017

Modified Files:
src/sys/arch/arm/sunxi: sunxi_gpio.c

Log Message:
Fix some register definitions.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/sunxi/sunxi_gpio.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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 21:59:14 UTC 2017

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

Log Message:
Disallow sharing between MPSAFE and non-MPSAFE handlers.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/fdt/gic_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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 22:39:05 UTC 2017

Added Files:
src/sys/arch/evbarm/conf: SUNXI_INSTALL

Log Message:
Add SUNXI_INSTALL kernel.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/arch/evbarm/conf/SUNXI_INSTALL

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



CVS commit: src/etc/etc.evbarm

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 22:39:44 UTC 2017

Modified Files:
src/etc/etc.evbarm: Makefile.inc

Log Message:
Replace HUMMINGBIRD_A31 with the SUNXI kernel.


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/etc/etc.evbarm/Makefile.inc

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

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun Jul  2 22:41:30 UTC 2017

Modified Files:
src/sys/arch/evbarm/conf: README.evbarm

Log Message:
Rename JETSONTK1 to TEGRA, add SUNXI


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/evbarm/conf/README.evbarm

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



CVS commit: src/sys/dev/ofw

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Mon Jul  3 00:47:34 UTC 2017

Modified Files:
src/sys/dev/ofw: ofw_subr.c openfirm.h

Log Message:
Add of_match_compat_data.

This routine searches an array of compat_data structures for a
matching "compatible" entry matching the supplied OFW node.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/ofw/ofw_subr.c
cvs rdiff -u -r1.35 -r1.36 src/sys/dev/ofw/openfirm.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/evbarm/conf

2017-07-02 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Mon Jul  3 00:51:44 UTC 2017

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

Log Message:
Add options __HAVE_CPU_UAREA_ALLOC_IDLELWP


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

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



CVS commit: src/sys/kern

2017-07-02 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jul  3 00:53:33 UTC 2017

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

Log Message:
Nix trailing whitespace.  No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/sys/kern/kern_event.c

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



CVS commit: src/sys/kern

2017-07-02 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jul  3 02:12:47 UTC 2017

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

Log Message:
Add cv_timedwaitbt, cv_timedwaitbt_sig.

Takes struct bintime maximum delay, and decrements it in place so
that you can use it in a loop in case of spurious wakeup.

Discussed on tech-kern a couple years ago:

https://mail-index.netbsd.org/tech-kern/2015/03/23/msg018557.html

Added a parameter for expressing desired precision -- not currently
interpreted, but intended for a future tickless kernel with a choice
of high-resolution timers.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/kern/kern_condvar.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

2017-07-02 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Mon Jul  3 03:12:43 UTC 2017

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

Log Message:
Add new declarations of cv_timedwaitbt and cv_timedwaitbt_sig, too.

Helps to put all the files I meant to commit on the command line!

Noted by pgoyette, thanks!


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/sys/condvar.h

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



CVS commit: src

2017-07-02 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Mon Jul  3 06:01:16 UTC 2017

Modified Files:
src/distrib/sets/lists/tests: mi
src/tests/net/ipsec: Makefile algorithms.sh common.sh
t_ipsec_transport.sh
Added Files:
src/tests/net/ipsec: t_ipsec_tunnel_ipcomp.sh

Log Message:
Add test cases for IPComp


To generate a diff of this commit:
cvs rdiff -u -r1.753 -r1.754 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.6 -r1.7 src/tests/net/ipsec/Makefile
cvs rdiff -u -r1.4 -r1.5 src/tests/net/ipsec/algorithms.sh \
src/tests/net/ipsec/t_ipsec_transport.sh
cvs rdiff -u -r1.3 -r1.4 src/tests/net/ipsec/common.sh
cvs rdiff -u -r0 -r1.1 src/tests/net/ipsec/t_ipsec_tunnel_ipcomp.sh

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



CVS commit: src/sbin/gpt

2017-07-02 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Mon Jul  3 06:44:58 UTC 2017

Modified Files:
src/sbin/gpt: biosboot.c

Log Message:
only do wedges if not the tools version.  fixes build on netbsd-4,
and any other place that might have the same ioctl name while having
something not quite right (in this case, cpuid_t in headers not
working properly..)

XXX: pullup-8


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sbin/gpt/biosboot.c

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