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
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
==
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
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
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
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
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
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