CVS commit: src/tests/lib/libpthread

2016-10-31 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Oct 31 23:51:20 UTC 2016 Modified Files: src/tests/lib/libpthread: t_mutex.c Log Message: more tests from kamil To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/tests/lib/libpthread/t_mutex.c Please note

CVS commit: src/lib/libpthread

2016-10-31 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Oct 31 23:53:12 UTC 2016 Modified Files: src/lib/libpthread: pthread_mutex.c Log Message: Don't spin if we already own the mutex, otherwise we will get stuck spinning forever, fixes timemutex{1,2} tests. To generate a

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

2016-10-31 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Oct 31 20:14:08 UTC 2016 Modified Files: src/distrib/sets/lists/comp: ad.mips Log Message: sort (sort of) To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 src/distrib/sets/lists/comp/ad.mips Please note that

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

2016-10-31 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Oct 31 20:16:48 UTC 2016 Modified Files: src/distrib/sets/lists/comp: ad.mips Log Message: Mark linker scripts with binutils To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 src/distrib/sets/lists/comp/ad.mips

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

2016-10-31 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Oct 31 20:22:35 UTC 2016 Modified Files: src/distrib/sets/lists/comp: ad.mips md.evbmips Log Message: Fix linker script entries for arch64 mips To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66

CVS commit: src/lib/libexecinfo

2016-10-31 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Mon Oct 31 07:37:10 UTC 2016 Modified Files: src/lib/libexecinfo: backtrace.3 Log Message: Fix markup .Dv --> .Dq (Thanks, wiz!) To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libexecinfo/backtrace.3

CVS commit: src/sys/dev/usb

2016-10-31 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Oct 31 12:18:10 UTC 2016 Modified Files: src/sys/dev/usb: uhso.c Log Message: PR/51574: You can't always get what you want, but if you try sometime.. Remove unreachable code. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/arch/mips

2016-10-31 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Oct 31 12:49:04 UTC 2016 Modified Files: src/sys/arch/mips/include: cpu.h src/sys/arch/mips/mips: cpu_subr.c Log Message: Pre-allocate some kcpuset_ts so that we don't try and allocate in the wrong context. To

CVS commit: src/sys/dev/pci

2016-10-31 Thread Martin Husemann
Module Name:src Committed By: martin Date: Mon Oct 31 09:13:20 UTC 2016 Modified Files: src/sys/dev/pci: pci_subr.c Log Message: Stopgap fix for in-kernel compilation (differences between humanize_number(3) and humanize_number(9)), ok: msaitoh To generate a diff of this

CVS commit: src/sys/arch/mips/cavium

2016-10-31 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Oct 31 12:27:23 UTC 2016 Modified Files: src/sys/arch/mips/cavium: octeon_intr.c Log Message: Fixup IPI interrupt delivery and splsched mask so that sys/uvm/pmap/pmap_tlb.c 541 KASSERTMSG(ci->ci_cpl >= IPL_SCHED,

CVS commit: src

2016-10-31 Thread Ryota Ozaki
Module Name:src Committed By: ozaki-r Date: Mon Oct 31 10:38:25 UTC 2016 Modified Files: src/distrib/sets/lists/tests: mi src/tests/net/net: Makefile Added Files: src/tests/net/net: t_ping6_opts.sh Log Message: Add tests for ping6 options - -S - -I - -g

CVS commit: src/sys/netinet6

2016-10-31 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Oct 31 14:34:32 UTC 2016 Modified Files: src/sys/netinet6: in6_pcb.c Log Message: restore previous logic. To generate a diff of this commit: cvs rdiff -u -r1.151 -r1.152 src/sys/netinet6/in6_pcb.c Please note that diffs

CVS commit: src/sys/kern

2016-10-31 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Mon Oct 31 15:05:05 UTC 2016 Modified Files: src/sys/kern: uipc_usrreq.c Log Message: Memory leak, found by Mootja. It is easily triggerable from userland. To generate a diff of this commit: cvs rdiff -u -r1.180 -r1.181

CVS commit: src/sys/kern

2016-10-31 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Mon Oct 31 15:27:24 UTC 2016 Modified Files: src/sys/kern: subr_tftproot.c Log Message: The mbuf is freed by the protocol even on error, so always NULL the pointer instead of double-freeing it. Indirectly pointed out by Mootja.

CVS commit: src/sys/kern

2016-10-31 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Mon Oct 31 15:08:45 UTC 2016 Modified Files: src/sys/kern: uipc_sem.c Log Message: Memory leak, found by Mootja. By the way, we probably shouldn't be returning -1 here. To generate a diff of this commit: cvs rdiff -u -r1.46

CVS commit: src/tests/lib/libpthread

2016-10-31 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Oct 31 16:23:04 UTC 2016 Modified Files: src/tests/lib/libpthread: t_mutex.c Log Message: fix typos To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/tests/lib/libpthread/t_mutex.c Please note that diffs

CVS commit: src/tests/lib/libpthread

2016-10-31 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Oct 31 16:21:23 UTC 2016 Modified Files: src/tests/lib/libpthread: t_mutex.c t_timedmutex.c Log Message: Merge and fix the timed mutex tests to use absolute time. NB: the new tests are broken? To generate a diff of this

CVS commit: src/lib/libc/thread-stub

2016-10-31 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Mon Oct 31 18:10:11 UTC 2016 Modified Files: src/lib/libc/thread-stub: thread-stub.c Log Message: Add CHECK_NOT_THREADED() in __libc_mutexattr_settype_stub() This makes this function consistent with __libc_mutex_catchall_stub()

CVS commit: src/lib/libedit

2016-10-31 Thread Abhinav Upadhyay
Module Name:src Committed By: abhinav Date: Mon Oct 31 17:46:32 UTC 2016 Modified Files: src/lib/libedit: filecomplete.c Log Message: Fix file name auto completion in one specific case. For example if you do $mkdir -p /tmp/dir1/dir2 Then: $ls /tmp/di auto completes to