Re: svn commit: r305634 - head/share/mk

2016-09-10 Thread Simon J. Gerraty
Bryan Drewery wrote: > > +# some targets involve old pre-built targets > > +# ignore mtime of shell > > +# and mtime of makefiles does not matter in meta mode > > +.MAKE.META.IGNORE_PATHS += \ > > +${MAKEFILE} \ > > +${SHELL} \ > > +${SYS_MK_DIR} > > I think it could be p

svn commit: r305678 - head/sys/kern

2016-09-10 Thread Konstantin Belousov
Author: kib Date: Sat Sep 10 09:00:12 2016 New Revision: 305678 URL: https://svnweb.freebsd.org/changeset/base/305678 Log: Fix build Modified: head/sys/kern/uipc_syscalls.c Modified: head/sys/kern/uipc_syscalls.c ==

svn commit: r305679 - head/sys/cddl/compat/opensolaris/sys

2016-09-10 Thread Alexander Motin
Author: mav Date: Sat Sep 10 09:37:41 2016 New Revision: 305679 URL: https://svnweb.freebsd.org/changeset/base/305679 Log: Switch random_get_pseudo_bytes() shim to arc4rand(). Our shim for Solaris random_get_bytes() uses read_random(), that looks reasonable, since it guaranties reliably s

svn commit: r305684 - head/sys/kern

2016-09-10 Thread Mateusz Guzik
Author: mjg Date: Sat Sep 10 16:29:53 2016 New Revision: 305684 URL: https://svnweb.freebsd.org/changeset/base/305684 Log: cache: improve scalability by introducing bucket locks An array of bucket locks is added. All modifications still require the global cache_lock to be held for wr

svn commit: r305685 - in head/sys: amd64/amd64 arm/arm arm64/arm64 i386/i386 powerpc/booke riscv/riscv sparc64/sparc64 vm

2016-09-10 Thread Alan Cox
Author: alc Date: Sat Sep 10 16:49:25 2016 New Revision: 305685 URL: https://svnweb.freebsd.org/changeset/base/305685 Log: Various changes to pmap_ts_referenced() Move PMAP_TS_REFERENCED_MAX out of the various pmap implementations and into vm/pmap.h, and describe what its purpose is. Eli

svn commit: r305689 - head/sys/arm/allwinner

2016-09-10 Thread Emmanuel Vadot
Author: manu Date: Sat Sep 10 17:45:35 2016 New Revision: 305689 URL: https://svnweb.freebsd.org/changeset/base/305689 Log: a10_mmc: Remove completly the PIO code now all access is done by DMA. Rename registers as in the manual. Do a hard reset of the controller before a soft one. Since DM

Re: svn commit: r305634 - head/share/mk

2016-09-10 Thread Simon J. Gerraty
Bryan Drewery wrote: > > +# we can afford to use cookies to prevent some targets > > +# re-running needlessly > > +META_COOKIE_TOUCH= touch ${COOKIE.${.TARGET}:U${.OBJDIR}/${.TARGET}} > > Could you use ?= here please? I have a META_COOKIE_TOUCH in local.sys.mk Sure. > Also note that you need to

svn commit: r305690 - head/lib/libc/sys

2016-09-10 Thread Ed Maste
Author: emaste Date: Sun Sep 11 01:11:47 2016 New Revision: 305690 URL: https://svnweb.freebsd.org/changeset/base/305690 Log: cap_enter.2: describe flag returned by cap_getmode Previously the flag returned by cap_getmode was not described explicitly in the man page. Reviewed by: wbl