CVS commit: src/sys/kern

2018-08-24 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sat Aug 25 05:56:25 UTC 2018

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

Log Message:
Disable POOL_REDZONE until we figure out what's wrong. There must be a dumb
problem, that is not triggerable on amd64.


To generate a diff of this commit:
cvs rdiff -u -r1.225 -r1.226 src/sys/kern/subr_pool.c

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



CVS commit: src/bin/sh

2018-08-24 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Sat Aug 25 02:42:49 UTC 2018

Modified Files:
src/bin/sh: eval.c

Log Message:
PR bin/53548

Deal with the new shell internal exit reason EXEXIT in the case of
a shell which has vfork()'d.   It takes a peculiar set of circumstances
to get into a situation where this is ever relevant, but it can be
done.   See the PR for details.


To generate a diff of this commit:
cvs rdiff -u -r1.160 -r1.161 src/bin/sh/eval.c

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



CVS commit: [pgoyette-compat] src/doc

2018-08-24 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sat Aug 25 01:02:49 UTC 2018

Modified Files:
src/doc [pgoyette-compat]: COMPAT-branch-notes

Log Message:
Separate the TODO list into two lists, required-for-merge vs not-required.

Expand a couple entries.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.17 -r1.1.2.18 src/doc/COMPAT-branch-notes

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



CVS commit: src/doc

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Aug 25 00:09:12 UTC 2018

Modified Files:
src/doc: CHANGES

Log Message:
arm: Add UEFI boot loader for ARM64 platforms.


To generate a diff of this commit:
cvs rdiff -u -r1.2429 -r1.2430 src/doc/CHANGES

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



CVS commit: src

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Aug 25 00:07:09 UTC 2018

Modified Files:
src/distrib/sets/lists/base: ad.aarch64
src/sys/arch/evbarm/stand: Makefile

Log Message:
Build and install bootaa64.efi on 64-bit evbarm


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/distrib/sets/lists/base/ad.aarch64
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/evbarm/stand/Makefile

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



CVS commit: src/sys/stand/efiboot

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Aug 24 23:21:56 UTC 2018

Modified Files:
src/sys/stand/efiboot: efiboot.c

Log Message:
If we could not query the DevicePathProtocol handle, just select no default 
boot device instead of exiting.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/stand/efiboot/efiboot.c

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



CVS commit: src/sys/stand/efiboot

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Aug 24 23:22:10 UTC 2018

Modified Files:
src/sys/stand/efiboot: boot.c

Log Message:
Use absolute paths for default kernel filenames


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/stand/efiboot/boot.c

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



CVS commit: src/sys/stand/efiboot

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Aug 24 23:20:41 UTC 2018

Modified Files:
src/sys/stand/efiboot: efifdt.c

Log Message:
Sanitize the memory map passed to the kernel.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/stand/efiboot/efifdt.c

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



CVS commit: src/sys/stand/efiboot

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Aug 24 23:19:42 UTC 2018

Modified Files:
src/sys/stand/efiboot: efifile.c

Log Message:
If the boot device could not be determined, use the first one found as
the default. While here, remove unnecessary calls to LibFileSystemInfo().


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/stand/efiboot/efifile.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

2018-08-24 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Fri Aug 24 21:56:13 UTC 2018

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

Log Message:
/cpus node may have any nodes except cpu. count only nodes of device_type "cpu"


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/fdt/psci_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/stand/efiboot

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Aug 24 20:55:20 UTC 2018

Modified Files:
src/sys/stand/efiboot: prompt.c

Log Message:
Start counting down at 5 instead of 4


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/stand/efiboot/prompt.c

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



CVS commit: src/sys/stand/efiboot

2018-08-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Fri Aug 24 20:51:16 UTC 2018

Modified Files:
src/sys/stand/efiboot: efiboot.c

Log Message:
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset() may not be supported. Failing to reset 
is not a fatal error, so ignore the status.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/stand/efiboot/efiboot.c

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



CVS commit: src/doc

2018-08-24 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Fri Aug 24 20:26:03 UTC 2018

Modified Files:
src/doc: 3RDPARTY

Log Message:
OpenSSH 7.8 is out


To generate a diff of this commit:
cvs rdiff -u -r1.1556 -r1.1557 src/doc/3RDPARTY

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



CVS commit: src/sys/arch/aarch64/aarch64

2018-08-24 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Fri Aug 24 19:06:30 UTC 2018

Modified Files:
src/sys/arch/aarch64/aarch64: locore.S

Log Message:
set correctly TCR_EL1 for inner shareable when MULTIPROCESSOR


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/aarch64/aarch64/locore.S

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



CVS commit: src/doc

2018-08-24 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Aug 24 17:09:30 UTC 2018

Modified Files:
src/doc: TODO.kaslr

Log Message:
mark one entry as done


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/doc/TODO.kaslr

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



CVS commit: src/sys/net

2018-08-24 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Aug 24 17:06:29 UTC 2018

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

Log Message:
Use a random hunique, instead of sending the pointer of the interface.
Tested via ATF.


To generate a diff of this commit:
cvs rdiff -u -r1.142 -r1.143 src/sys/net/if_pppoe.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

2018-08-24 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Aug 24 16:37:19 UTC 2018

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

Log Message:
 for TAILQ_*.  Parenthesize macro arguments.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/sys/sdt.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/makemandb

2018-08-24 Thread Abhinav Upadhyay
Module Name:src
Committed By:   abhinav
Date:   Fri Aug 24 16:01:57 UTC 2018

Modified Files:
src/usr.sbin/makemandb: makemandb.c

Log Message:
Adjust makemandb for the latest mandoc

ok christos@


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/usr.sbin/makemandb/makemandb.c

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



CVS commit: src/libexec/httpd

2018-08-24 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Fri Aug 24 14:24:50 UTC 2018

Modified Files:
src/libexec/httpd: bozohttpd.8

Log Message:
Remove trailing whitespace.


To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/libexec/httpd/bozohttpd.8

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



CVS commit: src/sys/kern

2018-08-24 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Aug 24 14:04:27 UTC 2018

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

Log Message:
Use __predict_false to optimize, and also replace panic->printf.


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/sys/kern/subr_pool.c

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



CVS commit: src/libexec/httpd

2018-08-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Aug 24 11:43:13 UTC 2018

Modified Files:
src/libexec/httpd: bozohttpd.8

Log Message:
Bump date


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/libexec/httpd/bozohttpd.8

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



CVS commit: src/libexec/httpd

2018-08-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Fri Aug 24 11:41:16 UTC 2018

Modified Files:
src/libexec/httpd: bozohttpd.8 bozohttpd.c
src/libexec/httpd/testsuite: Makefile
Added Files:
src/libexec/httpd/testsuite: t12.in t12.out t13.in t13.out
src/libexec/httpd/testsuite/data: .bzremap

Log Message:
Add support for remapping requested paths via a .bzredirect file.
Fixes PR 52772. Ok: mrg@


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.87 -r1.88 src/libexec/httpd/bozohttpd.c
cvs rdiff -u -r1.7 -r1.8 src/libexec/httpd/testsuite/Makefile
cvs rdiff -u -r0 -r1.1 src/libexec/httpd/testsuite/t12.in \
src/libexec/httpd/testsuite/t12.out src/libexec/httpd/testsuite/t13.in \
src/libexec/httpd/testsuite/t13.out
cvs rdiff -u -r0 -r1.1 src/libexec/httpd/testsuite/data/.bzremap

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



CVS commit: src/libexec/httpd/testsuite

2018-08-24 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri Aug 24 10:04:41 UTC 2018

Modified Files:
src/libexec/httpd/testsuite: t3.out t5.out t6.out

Log Message:
fix output since protocol agnostic change went in.

XXX: i thought someone hooked this into atf already, please do :)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/libexec/httpd/testsuite/t3.out \
src/libexec/httpd/testsuite/t5.out src/libexec/httpd/testsuite/t6.out

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