svn commit: r349554 - in head: lib/libc/gen libexec/rtld-elf libexec/rtld-elf/rtld-libc

2019-06-30 Thread Alex Richardson
Author: arichardson Date: Sun Jun 30 11:49:58 2019 New Revision: 349554 URL: https://svnweb.freebsd.org/changeset/base/349554 Log: Reduce size of rtld by 22% by pulling in less code from libc Currently RTLD is linked against libc_nossp_pic which means that any libc symbol used in rtld can

svn commit: r349555 - head/libexec/rtld-elf/rtld-libc

2019-06-30 Thread Alex Richardson
Author: arichardson Date: Sun Jun 30 14:04:30 2019 New Revision: 349555 URL: https://svnweb.freebsd.org/changeset/base/349555 Log: Fix my name in license header Reported by: trasz Modified: head/libexec/rtld-elf/rtld-libc/libc_private.h head/libexec/rtld-elf/rtld-libc/namespace.h he

svn commit: r349556 - head/lib/libpam/modules/pam_exec

2019-06-30 Thread Dag-Erling Smørgrav
Author: des Date: Sun Jun 30 14:46:15 2019 New Revision: 349556 URL: https://svnweb.freebsd.org/changeset/base/349556 Log: Changes to the expose_password functionality: - Implement use_first_pass, allowing expose_password to be used by other service functions than pam_auth() without p

svn commit: r349561 - head/libexec/rtld-elf/rtld-libc

2019-06-30 Thread Alex Richardson
Author: arichardson Date: Sun Jun 30 17:03:14 2019 New Revision: 349561 URL: https://svnweb.freebsd.org/changeset/base/349561 Log: Fix CROSS_TOOLCHAIN=amd64-gcc build after r349554 Apparently clang can remove the reference to __umoddi3 but GCC keeps it. Reported by: lwhsu Modified:

svn commit: r349562 - head/contrib/elftoolchain/common

2019-06-30 Thread Mitchell Horne
Author: mhorne Date: Sun Jun 30 19:43:13 2019 New Revision: 349562 URL: https://svnweb.freebsd.org/changeset/base/349562 Log: elftoolchain: fix an incorrect e_flags description r349482 introduced the definitions and descriptions of the RISC-V specific e_flags values to elftoolchain. Howev

svn commit: r349563 - head/contrib/elftoolchain/readelf

2019-06-30 Thread Mitchell Horne
Author: mhorne Date: Sun Jun 30 19:47:15 2019 New Revision: 349563 URL: https://svnweb.freebsd.org/changeset/base/349563 Log: readelf: Add RISC-V DWARF register aliases This allows DWARF debugging output to use the common register mneumonics, such as ra, sp, or t0. DWARF registers 0-

svn commit: r349564 - head/stand/efi/libefi

2019-06-30 Thread Toomas Soome
Author: tsoome Date: Sun Jun 30 20:15:02 2019 New Revision: 349564 URL: https://svnweb.freebsd.org/changeset/base/349564 Log: Clean efihttp pointer-sign warnings The Http protocol structure is using unsigned char strings, Use type casts where needed. Modified: head/stand/efi/libefi/efi

svn commit: r349565 - head/stand/efi/libefi

2019-06-30 Thread Toomas Soome
Author: tsoome Date: Sun Jun 30 20:18:31 2019 New Revision: 349565 URL: https://svnweb.freebsd.org/changeset/base/349565 Log: efihttp: comparison of integers of different signs message.HeaderCount is UINTN (unsigned int), so should be i. Modified: head/stand/efi/libefi/efihttp.c Modifie

svn commit: r349566 - head/stand/efi/libefi

2019-06-30 Thread Toomas Soome
Author: tsoome Date: Sun Jun 30 20:21:27 2019 New Revision: 349566 URL: https://svnweb.freebsd.org/changeset/base/349566 Log: efihttp: mark unused arguments with __unused we do have __unused, lets use it. Modified: head/stand/efi/libefi/efihttp.c Modified: head/stand/efi/libefi/efihttp.

svn commit: r349567 - head/sys/contrib/ipfilter/netinet

2019-06-30 Thread Cy Schubert
Author: cy Date: Sun Jun 30 22:27:58 2019 New Revision: 349567 URL: https://svnweb.freebsd.org/changeset/base/349567 Log: Revert r349400. It has uintended effects. Reported by: chris...@netbsd.org X-MFC with: r349400. Modified: head/sys/contrib/ipfilter/netinet/fil.c Modified: head

svn commit: r349568 - head/sys/contrib/ipfilter/netinet

2019-06-30 Thread Cy Schubert
Author: cy Date: Sun Jun 30 22:32:33 2019 New Revision: 349568 URL: https://svnweb.freebsd.org/changeset/base/349568 Log: The RFC 3128 test should be made after the offset mask has been applied. Reported by: chris...@netbsd.org X-MFC with: r349399 Modified: head/sys/contrib/ipfilter

svn commit: r349571 - head/sys/sys

2019-06-30 Thread Andriy Gapon
Author: avg Date: Mon Jul 1 06:22:41 2019 New Revision: 349571 URL: https://svnweb.freebsd.org/changeset/base/349571 Log: upgrade the warning printf-s in bus accessors to KASSERT-s, take 2 After this change sys/bus.h includes sys/systm.h when _KERNEL is defined. This brings back r34945