svn commit: r335248 - head/stand/i386/libi386

2018-06-15 Thread Allan Jude
Author: allanjude Date: Sat Jun 16 06:23:07 2018 New Revision: 335248 URL: https://svnweb.freebsd.org/changeset/base/335248 Log: biosdisk.c: fix type in debug printf Sponsored by: Klara Systems Modified: head/stand/i386/libi386/biosdisk.c Modified: head/stand/i386/libi386/biosdisk.c ===

svn commit: r335247 - head/stand/i386/libi386

2018-06-15 Thread Allan Jude
Author: allanjude Date: Sat Jun 16 05:58:33 2018 New Revision: 335247 URL: https://svnweb.freebsd.org/changeset/base/335247 Log: biosdisk.c: add missing \n to error message Sponsored by: Klara Systems Modified: head/stand/i386/libi386/biosdisk.c Modified: head/stand/i386/libi386/biosdis

Re: svn commit: r335242 - head/sys/kern

2018-06-15 Thread Bruce Evans
On Fri, 15 Jun 2018, Gleb Smirnoff wrote: Log: Since 'ticks' is an int, it may wrap around and cr_ticks at a certain counter_rate will be greater than ticks, resulting in counter_ratecheck() failure. To fix this take an absolute value of the difference between ticks and cr_ticks. This only

Re: svn commit: r335244 - head

2018-06-15 Thread Cy Schubert
In message <201806160436.w5g4axks039...@slippy.cwsent.com>, Cy Schubert writes: > In message <201806160035.w5g0zjfd066...@repo.freebsd.org>, Bryan > Drewery writes > : > > Author: bdrewery > > Date: Sat Jun 16 00:35:19 2018 > > New Revision: 335244 > > URL: https://svnweb.freebsd.org/changeset/ba

svn commit: r335246 - head/stand/i386/libi386

2018-06-15 Thread Allan Jude
Author: allanjude Date: Sat Jun 16 04:50:40 2018 New Revision: 335246 URL: https://svnweb.freebsd.org/changeset/base/335246 Log: biosdisk.c remove redundant variable `rdev` and `disk` serve the same purpose, read the partition table without the `d_offset` or `d_slice` set, so the read is

Re: svn commit: r335244 - head

2018-06-15 Thread Cy Schubert
In message <201806160035.w5g0zjfd066...@repo.freebsd.org>, Bryan Drewery writes : > Author: bdrewery > Date: Sat Jun 16 00:35:19 2018 > New Revision: 335244 > URL: https://svnweb.freebsd.org/changeset/base/335244 > > Log: > Assert that a build is done before an install. > > This should also

Re: svn commit: r335244 - head

2018-06-15 Thread Cy Schubert
In message <201806160035.w5g0zjfd066...@repo.freebsd.org>, Bryan Drewery writes : > Author: bdrewery > Date: Sat Jun 16 00:35:19 2018 > New Revision: 335244 > URL: https://svnweb.freebsd.org/changeset/base/335244 > > Log: > Assert that a build is done before an install. > > This should also

Re: svn commit: r335210 - head/tools/build/options

2018-06-15 Thread Ed Maste
On Fri, 15 Jun 2018 at 14:35, John Baldwin wrote: > > > BTW, I found it confusing recently that objcopy's build glue was in > usr.bin/elfcopy. That perhaps made sense during the transition, but > should we just rename that to usr.bin/objcopy now? Probably, yes. I'm happy if you want to go ahead

svn commit: r335245 - head/stand/i386/libi386

2018-06-15 Thread Allan Jude
Author: allanjude Date: Sat Jun 16 02:50:29 2018 New Revision: 335245 URL: https://svnweb.freebsd.org/changeset/base/335245 Log: Correct logic error in biosdisk.c:bd_realstrategy() The wrong condition is used when evaluating the return of disk_ioctl() This results in reaching the 'We shou

svn commit: r335244 - head

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Sat Jun 16 00:35:19 2018 New Revision: 335244 URL: https://svnweb.freebsd.org/changeset/base/335244 Log: Assert that a build is done before an install. This should also catch cases where the wrong MAKEOBJDIRPREFIX is used for install. MFC after:2 weeks Sp

svn commit: r335243 - head/sys/dev/cxgbe

2018-06-15 Thread Navdeep Parhar
Author: np Date: Fri Jun 15 23:42:22 2018 New Revision: 335243 URL: https://svnweb.freebsd.org/changeset/base/335243 Log: cxgbe(4): Add a hw.cxgbe.starve_fl sysctl that can be used to starve the freelists of netmap receive queues. This is primarily to test various congestion scenarios in th

svn commit: r335242 - head/sys/kern

2018-06-15 Thread Gleb Smirnoff
Author: glebius Date: Fri Jun 15 21:36:16 2018 New Revision: 335242 URL: https://svnweb.freebsd.org/changeset/base/335242 Log: Since 'ticks' is an int, it may wrap around and cr_ticks at a certain counter_rate will be greater than ticks, resulting in counter_ratecheck() failure. To fix this

Re: svn commit: r335223 - head/sys/dev/cxgbe

2018-06-15 Thread Navdeep Parhar
I'm all for these sysctls becoming %intr_cpus and %local_cpus and being filled up by the device's parent automatically. But I'd like to tweak the output a bit so that it can be fed directly to cpuset -l. Regards, Navdeep On 06/15/18 14:14, Conrad Meyer wrote: > This seems generally useful, and n

svn commit: r335241 - head/sys/dev/cxgbe

2018-06-15 Thread Navdeep Parhar
Author: np Date: Fri Jun 15 21:23:03 2018 New Revision: 335241 URL: https://svnweb.freebsd.org/changeset/base/335241 Log: cxgbe(4): Track the number of received frames separately from the number of descriptors processed. Add the ability to gather a certain maximum number of frames in the dr

Re: svn commit: r335223 - head/sys/dev/cxgbe

2018-06-15 Thread Conrad Meyer
This seems generally useful, and nothing about the code is specific to cxgbe. Could it be adapted to be driver-agnostic? Thanks, Conrad On Fri, Jun 15, 2018 at 11:04 AM, Navdeep Parhar wrote: > Author: np > Date: Fri Jun 15 18:04:44 2018 > New Revision: 335223 > URL: https://svnweb.freebsd.org/

svn commit: r335240 - head/usr.sbin/pnfsdscopymr

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 21:07:14 2018 New Revision: 335240 URL: https://svnweb.freebsd.org/changeset/base/335240 Log: Use the .Fx macro in the man page. Reported by: bjk Modified: head/usr.sbin/pnfsdscopymr/pnfsdscopymr.8 Modified: head/usr.sbin/pnfsdscopymr/pnfsdscopymr.8 ==

svn commit: r335239 - head/usr.sbin/pnfsdsfile

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 21:04:28 2018 New Revision: 335239 URL: https://svnweb.freebsd.org/changeset/base/335239 Log: Use the .Fx macro in the man page. Reported by: bjk Modified: head/usr.sbin/pnfsdsfile/pnfsdsfile.8 Modified: head/usr.sbin/pnfsdsfile/pnfsdsfile.8 ==

svn commit: r335238 - head/usr.sbin/pnfsdskill

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 21:02:33 2018 New Revision: 335238 URL: https://svnweb.freebsd.org/changeset/base/335238 Log: Use the .Fx macro in the man page. Reported by: bjk Modified: head/usr.sbin/pnfsdskill/pnfsdskill.8 Modified: head/usr.sbin/pnfsdskill/pnfsdskill.8 ==

svn commit: r335237 - head/sys/sys

2018-06-15 Thread Conrad Meyer
Author: cem Date: Fri Jun 15 20:57:02 2018 New Revision: 335237 URL: https://svnweb.freebsd.org/changeset/base/335237 Log: Bump __FreeBSD_version after r335227 The kerneldumpheader ABI is used by at least the netdumpd port. Bump __FreeBSD_version to reflect the change. Reported by:

svn commit: r335236 - in head/usr.sbin: . pnfsdscopymr

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 19:45:15 2018 New Revision: 335236 URL: https://svnweb.freebsd.org/changeset/base/335236 Log: Add a command that copies or migrates a data file from one DS to another. This command can be used by a sysadmin to either copy or migrate a data file on one DS

svn commit: r335235 - head/sys/arm64/linux

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 19:42:52 2018 New Revision: 335235 URL: https://svnweb.freebsd.org/changeset/base/335235 Log: arm64 linuxulator: add linux_dummy.c based on amd64 A later change should deduplicate the multiple copies of this file. Sponsored by: Turing Robotic Industries

svn commit: r335234 - in head/usr.sbin: . pnfsdsfile

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 19:35:08 2018 New Revision: 335234 URL: https://svnweb.freebsd.org/changeset/base/335234 Log: Add a command the displays and modifies the pNFS server's extended attribute. This command allows a sysadmin to display or modify the pnfsd.dsfile extended attri

Re: svn commit: r335233 - head/lib/libpmc

2018-06-15 Thread Bryan Drewery
On 6/15/2018 12:19 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Fri Jun 15 19:19:36 2018 > New Revision: 335233 > URL: https://svnweb.freebsd.org/changeset/base/335233 > > Log: > Put in temporary hacks for jevents. > > - Handle 'make clean' > - Don't try building it locally, just f

svn commit: r335233 - head/lib/libpmc

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 19:19:36 2018 New Revision: 335233 URL: https://svnweb.freebsd.org/changeset/base/335233 Log: Put in temporary hacks for jevents. - Handle 'make clean' - Don't try building it locally, just fail instead. jevents should really be merged into lib/libpm

svn commit: r335232 - head/sys/arm64/linux

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 19:09:17 2018 New Revision: 335232 URL: https://svnweb.freebsd.org/changeset/base/335232 Log: arm64: add arm64 linux.h based on i386 linuxulator and Linux headers Sponsored by: Turing Robotic Industries Added: head/sys/arm64/linux/linux.h (contents, prop

svn commit: r335229 - in head/stand/efi: include libefi loader

2018-06-15 Thread Warner Losh
Author: imp Date: Fri Jun 15 19:07:26 2018 New Revision: 335229 URL: https://svnweb.freebsd.org/changeset/base/335229 Log: Provide a more direct interface to tell ZFS what the preferred handle is. We tell the ZFS code now, and it checks rather than having a callback to do the checks. Th

svn commit: r335228 - head/stand/efi/loader

2018-06-15 Thread Warner Losh
Author: imp Date: Fri Jun 15 19:07:06 2018 New Revision: 335228 URL: https://svnweb.freebsd.org/changeset/base/335228 Log: Migrate has_keyboard to bool. Modified: head/stand/efi/loader/main.c Modified: head/stand/efi/loader/main.c =

svn commit: r335231 - head/stand/efi/loader

2018-06-15 Thread Warner Losh
Author: imp Date: Fri Jun 15 19:07:37 2018 New Revision: 335231 URL: https://svnweb.freebsd.org/changeset/base/335231 Log: There's no need to walk through the tables looking for the smbios table if we're just going to ignore it on arm, so expand, slightly, the reach of the ifdef. Move the bu

svn commit: r335230 - head/stand/efi/loader

2018-06-15 Thread Warner Losh
Author: imp Date: Fri Jun 15 19:07:31 2018 New Revision: 335230 URL: https://svnweb.freebsd.org/changeset/base/335230 Log: Move arg parsing into its own routine for possible later reuse. Modified: head/stand/efi/loader/main.c Modified: head/stand/efi/loader/main.c ===

Re: svn commit: r335226 - head/sys/dev/ofw

2018-06-15 Thread Justin Hibbits
On Fri, Jun 15, 2018, 13:55 Justin Hibbits wrote: > Author: jhibbits > Date: Fri Jun 15 18:55:02 2018 > New Revision: 335226 > URL: https://svnweb.freebsd.org/changeset/base/335226 > > Log: > Check for a 'pci' prefix rather than a full match in get_addr_props > > Summary: > Newer OPAL devic

svn commit: r335227 - head/sys/sys

2018-06-15 Thread Conrad Meyer
Author: cem Date: Fri Jun 15 19:02:53 2018 New Revision: 335227 URL: https://svnweb.freebsd.org/changeset/base/335227 Log: Retain offset compatibility with pre-12.0 dumps As a follow-up to r324965, which adds support for compressed kernel dumps, readjust dump header members slightly to mo

svn commit: r335226 - head/sys/dev/ofw

2018-06-15 Thread Justin Hibbits
Author: jhibbits Date: Fri Jun 15 18:55:02 2018 New Revision: 335226 URL: https://svnweb.freebsd.org/changeset/base/335226 Log: Check for a 'pci' prefix rather than a full match in get_addr_props Summary: Newer OPAL device trees, such as those on POWER9 systems, use 'pciex' for device_t

svn commit: r335225 - head

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 18:50:24 2018 New Revision: 335225 URL: https://svnweb.freebsd.org/changeset/base/335225 Log: lib32: Fix lib/libpmc/pmu-events files ending up in source directory. This could happen with either WITHOUT_AUTO_OBJ=yes or MAKELEVEL>0 for the initial 'make bui

svn commit: r335224 - head/stand/arm/loader

2018-06-15 Thread Warner Losh
Author: imp Date: Fri Jun 15 18:46:01 2018 New Revision: 335224 URL: https://svnweb.freebsd.org/changeset/base/335224 Log: Remove empty directory Deleted: head/stand/arm/loader/ ___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mail

Re: svn commit: r335210 - head/tools/build/options

2018-06-15 Thread John Baldwin
On 6/15/18 9:18 AM, Ed Maste wrote: > Author: emaste > Date: Fri Jun 15 16:18:39 2018 > New Revision: 335210 > URL: https://svnweb.freebsd.org/changeset/base/335210 > > Log: > Remove objcopy from BINUTILS option descriptions > > As of r306649 objcopy is always ELF Tool Chain's elfcopy; binu

svn commit: r335223 - head/sys/dev/cxgbe

2018-06-15 Thread Navdeep Parhar
Author: np Date: Fri Jun 15 18:04:44 2018 New Revision: 335223 URL: https://svnweb.freebsd.org/changeset/base/335223 Log: cxgbe(4): sysctls to display the local and intr CPUs for the adapter. The driver assumes the list can change (even though it does't right now) and queries it every tim

svn commit: r335222 - in head: . targets/pseudo/userland usr.sbin usr.sbin/asf

2018-06-15 Thread Ed Maste
| uniq -d; # done +# 20180615: asf(8) removed +OLD_FILES+=usr/bin/asf +OLD_FILES+=usr/share/man/man8/asf.8.gz # 20180609: obsolete libc++ files missed from the 5.0.0 import OLD_FILES+=usr/include/c++/v1/__refstring OLD_FILES+=usr/include/c++/v1/__undef_min_max Modified: head/targets/pseudo

svn commit: r335221 - head/usr.sbin/asf

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 17:38:07 2018 New Revision: 335221 URL: https://svnweb.freebsd.org/changeset/base/335221 Log: Add deprecation notice in asf.8 PR: 229046 Reviewed by: jhb MFC after:1 week Sponsored by: The FreeBSD Foundation Modified: head/usr.sbin/asf

svn commit: r335220 - head/sys/dev/extres/regulator

2018-06-15 Thread Kyle Evans
Author: kevans Date: Fri Jun 15 17:29:32 2018 New Revision: 335220 URL: https://svnweb.freebsd.org/changeset/base/335220 Log: extres/regulator: Switch boot_on/always_on sysctl to uint8 These are represented as booleans on the kernel-side, but were being exposed as int. This was causing so

svn commit: r335219 - head/gnu/usr.bin/binutils/objdump

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 17:16:27 2018 New Revision: 335219 URL: https://svnweb.freebsd.org/changeset/base/335219 Log: objdump.1: manually apply r229046 to the rendered man page Modified: head/gnu/usr.bin/binutils/objdump/objdump.1 Modified: head/gnu/usr.bin/binutils/objdump/objdump.1

svn commit: r335217 - head/contrib/binutils/binutils/doc

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 17:03:49 2018 New Revision: 335217 URL: https://svnweb.freebsd.org/changeset/base/335217 Log: Add deprecation notice to objdump man page PR: 229046 MFC after:1 week Sponsored by: The FreeBSD Foundation Differential Revision:https:/

svn commit: r335218 - head

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 17:03:57 2018 New Revision: 335218 URL: https://svnweb.freebsd.org/changeset/base/335218 Log: libcompat: Only build libmagic build tool if MK_FILE is yes. Sponsored by: Dell EMC Modified: head/Makefile.libcompat Modified: head/Makefile.libcompat ===

svn commit: r335216 - head

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 16:48:09 2018 New Revision: 335216 URL: https://svnweb.freebsd.org/changeset/base/335216 Log: Only build jevents if MK_PMC is yes and only for amd64 in libcompat. Sponsored by: Dell EMC Modified: head/Makefile.inc1 head/Makefile.libcompat Modified: he

svn commit: r335215 - head/tests/sys/audit

2018-06-15 Thread Alan Somers
Author: asomers Date: Fri Jun 15 16:41:28 2018 New Revision: 335215 URL: https://svnweb.freebsd.org/changeset/base/335215 Log: audit(4): Add a few tests for network-related syscalls Add tests for socket(2), socketpair(2), and setsockopt(2) Submitted by: aniketp MFC after:2 weeks

svn commit: r335214 - head/sys/conf

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 16:32:18 2018 New Revision: 335214 URL: https://svnweb.freebsd.org/changeset/base/335214 Log: Correct kern.pre.mk comment: objcopy, not objdump, copies objects. PR: 229046 MFC after:1 week Sponsored by: The FreeBSD Foundation Modified: he

svn commit: r335213 - head/usr.bin/ldd

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 16:28:50 2018 New Revision: 335213 URL: https://svnweb.freebsd.org/changeset/base/335213 Log: ldd: reference readelf instead of objdump in warning message We have an obsolete GNU objdump 2.17.50 in the base system, which will be removed in the future. Sugg

svn commit: r335212 - head/share/man/man5

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 16:25:36 2018 New Revision: 335212 URL: https://svnweb.freebsd.org/changeset/base/335212 Log: src.conf.5: regen after r335210, *BINUTILS description updates Sponsored by: The FreeBSD Foundation Modified: head/share/man/man5/src.conf.5 Modified: head/share

svn commit: r335211 - head/sys/dev/virtio/mmio

2018-06-15 Thread Ruslan Bukin
Author: br Date: Fri Jun 15 16:19:10 2018 New Revision: 335211 URL: https://svnweb.freebsd.org/changeset/base/335211 Log: Make virtio queue re-initialization steps to be similar to original initialization, so we don't miss few registers to configure. This fixes vtnet(4) operation with Q

svn commit: r335209 - head/share/man/man5

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 16:14:42 2018 New Revision: 335209 URL: https://svnweb.freebsd.org/changeset/base/335209 Log: elf.5: add readelf cross-reference objdump is sometimes used in cases where readelf is more appropriate, but the obsolete GNU objdump we have in the base system wi

svn commit: r335210 - head/tools/build/options

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 16:18:39 2018 New Revision: 335210 URL: https://svnweb.freebsd.org/changeset/base/335210 Log: Remove objcopy from BINUTILS option descriptions As of r306649 objcopy is always ELF Tool Chain's elfcopy; binutils objcopy is never used. PR: 22904

svn commit: r335208 - head/tests/sys/audit

2018-06-15 Thread Alan Somers
Author: asomers Date: Fri Jun 15 15:36:10 2018 New Revision: 335208 URL: https://svnweb.freebsd.org/changeset/base/335208 Log: audit(4): improve formatting in tests/sys/audit/open.c [skip ci] Submitted by: aniketp MFC after:2 weeks Sponsored by: Google, Inc. (GSoC 2018) Diffe

svn commit: r335207 - head/tests/sys/audit

2018-06-15 Thread Alan Somers
Author: asomers Date: Fri Jun 15 15:32:02 2018 New Revision: 335207 URL: https://svnweb.freebsd.org/changeset/base/335207 Log: audit(4): add tests for access(2), chmod(2), and friends access(2), eaccess(2), faccessat(2), chmod(2), fchmod(2), lchmod(2), and fchmodat(2). Submitted by:

svn commit: r335206 - head/cddl/contrib/opensolaris/cmd/zfs

2018-06-15 Thread Eric van Gyzen
Author: vangyzen Date: Fri Jun 15 15:28:31 2018 New Revision: 335206 URL: https://svnweb.freebsd.org/changeset/base/335206 Log: Fix markup in zfs(8); no content change Sponsored by: Dell EMC Modified: head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Modified: head/cddl/contrib/opensolaris/cm

svn commit: r335205 - head/sys/compat/linprocfs

2018-06-15 Thread Chuck Tuffli
Author: chuck Date: Fri Jun 15 15:22:27 2018 New Revision: 335205 URL: https://svnweb.freebsd.org/changeset/base/335205 Log: Add linprocfs support for min_free_kbytes This adds linprocfs support for proc/sys/vm/min_free_kbytes which the free program requires for correct operation. The app

svn commit: r335204 - stable/11/share/mk

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 15:10:21 2018 New Revision: 335204 URL: https://svnweb.freebsd.org/changeset/base/335204 Log: MFC r325560: META_MODE: Bmake 20171028 in r325340 simplifies the meta filename. Modified: stable/11/share/mk/bsd.dep.mk Directory Properties: stable/11/ (

svn commit: r335203 - stable/11/share/mk

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 15:05:00 2018 New Revision: 335203 URL: https://svnweb.freebsd.org/changeset/base/335203 Log: MFC r334791,r334811: r334791: Stop using head(1) which is not available in installworld. r334811: Use simpler sed invocation. Modified: stable

svn commit: r335202 - stable/11/lib/libmagic

2018-06-15 Thread Bryan Drewery
Author: bdrewery Date: Fri Jun 15 15:01:59 2018 New Revision: 335202 URL: https://svnweb.freebsd.org/changeset/base/335202 Log: MFC r330702: LIB32: Avoid linking in unneeded (and invalid lib32) libz for libmagic build tool. Modified: stable/11/lib/libmagic/Makefile Directory Proper

svn commit: r335201 - in head/sys: amd64/linux amd64/linux32 compat/linux i386/linux

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 14:41:51 2018 New Revision: 335201 URL: https://svnweb.freebsd.org/changeset/base/335201 Log: linuxulator: do not include legacy syscalls on arm64 Existing linuxulator platforms (i386, amd64) support legacy syscalls, such as non-*at ones like open, but arm6

svn commit: r335200 - head/sys/compat/linux

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 14:29:41 2018 New Revision: 335200 URL: https://svnweb.freebsd.org/changeset/base/335200 Log: Correct debug control for linuxulator faccessat The Linuxulator provides per-syscall debug control via the compat.linux.debug sysctl. There's generally a 1:1 mapp

svn commit: r335199 - head/sys/compat/linprocfs

2018-06-15 Thread Konstantin Belousov
Author: kib Date: Fri Jun 15 13:56:58 2018 New Revision: 335199 URL: https://svnweb.freebsd.org/changeset/base/335199 Log: linprocfs: add TracerPid to /proc/pid/status. Also fix the value of parent pid if the process is traced. Submitted by: Yanko Yankulov MFC after:1 week Modifie

svn commit: r335198 - head/sys/compat/linprocfs

2018-06-15 Thread Ed Maste
Author: emaste Date: Fri Jun 15 13:53:37 2018 New Revision: 335198 URL: https://svnweb.freebsd.org/changeset/base/335198 Log: Add stubbed arm64 linuxulator /proc/cpuinfo handler Sponsored by: Turing Robotic Industries Modified: head/sys/compat/linprocfs/linprocfs.c Modified: head/sys/co

svn commit: r335197 - releng/11.2/sys/conf

2018-06-15 Thread Glen Barber
Author: gjb Date: Fri Jun 15 13:49:11 2018 New Revision: 335197 URL: https://svnweb.freebsd.org/changeset/base/335197 Log: Update releng/11.2 to RC3 as part of the 11.2-RELEASE cycle. Approved by: re (implicit) Sponsored by: The FreeBSD Foundation Modified: releng/11.2/sys/conf/newver

svn commit: r335196 - in releng/11.2/sys: amd64/amd64 i386/i386 i386/isa

2018-06-15 Thread Konstantin Belousov
Author: kib Date: Fri Jun 15 13:21:37 2018 New Revision: 335196 URL: https://svnweb.freebsd.org/changeset/base/335196 Log: MFC rr335072, r335089: Enable eager FPU context switch on i386 and amd64. CVE: CVE-2018-3665 MFC r335131 Remove printf() in #NM handler. MFC r335132: Reor

svn commit: r335195 - head/sys/dev/extres/regulator

2018-06-15 Thread Kyle Evans
Author: kevans Date: Fri Jun 15 13:14:45 2018 New Revision: 335195 URL: https://svnweb.freebsd.org/changeset/base/335195 Log: Revert r335173 at request of mmel@ This was the wrong solution to the problem; regulator_shutdown invokes regnode_stop. regulator_stop is not a refcounting method,

svn commit: r335194 - head/sys/netinet

2018-06-15 Thread Michael Tuexen
Author: tuexen Date: Fri Jun 15 12:28:43 2018 New Revision: 335194 URL: https://svnweb.freebsd.org/changeset/base/335194 Log: When retransmitting TCP SYN-ACK segments with the TCP timestamp option enabled use an updated timestamp instead of reusing the one used in the initial TCP SYN-ACK seg

svn commit: r335193 - head/usr.sbin

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 11:54:55 2018 New Revision: 335193 URL: https://svnweb.freebsd.org/changeset/base/335193 Log: Add an entry into the Makefile for pnfsdskill. pnfsdskill was added by r335192. This commit adds an entry for it to the Makefile. Modified: head/usr.sbin/Make

svn commit: r335192 - head/usr.sbin/pnfsdskill

2018-06-15 Thread Rick Macklem
Author: rmacklem Date: Fri Jun 15 11:52:34 2018 New Revision: 335192 URL: https://svnweb.freebsd.org/changeset/base/335192 Log: Add a command that disables a pNFS server mirrored DS. This command can be used by a sysadmin to disable a malfunctioning pNFS server mirrored DS. It is safe to

Re: svn commit: r335171 - head/sys/vm

2018-06-15 Thread Konstantin Belousov
On Fri, Jun 15, 2018 at 11:03:06AM +0100, Steven Hartland wrote: > On 15/06/2018 00:07, Alan Cox wrote: > > > >> On Jun 14, 2018, at 5:54 PM, Steven Hartland > >> >> > wrote: > >> > >> Out of interest, how would this exhibit itself? > >> > > > > A panic in

Re: svn commit: r335171 - head/sys/vm

2018-06-15 Thread Steven Hartland
On 15/06/2018 00:07, Alan Cox wrote: On Jun 14, 2018, at 5:54 PM, Steven Hartland > wrote: Out of interest, how would this exhibit itself? A panic in vm_page_insert_after(). So just to confirm this couldn't cause random memory corruption of the par

svn commit: r335191 - stable/11/sys/kern

2018-06-15 Thread Mark Johnston
Author: markj Date: Fri Jun 15 08:59:24 2018 New Revision: 335191 URL: https://svnweb.freebsd.org/changeset/base/335191 Log: MFC r334506: Avoid completing I/O when dumping core after a panic. Modified: stable/11/sys/kern/vfs_bio.c Directory Properties: stable/11/ (props changed) Modifi

svn commit: r335190 - head/sys/arm/allwinner/clkng

2018-06-15 Thread Emmanuel Vadot
Author: manu Date: Fri Jun 15 08:36:21 2018 New Revision: 335190 URL: https://svnweb.freebsd.org/changeset/base/335190 Log: allwinner: ccung: Fully subclass the clock drivers Each clock drivers if now fully subclassed, this have the advantage that we can control the probe order. Some cl