svn commit: r334888 - head/tools/boot

2018-06-09 Thread Allan Jude
Author: allanjude Date: Sat Jun 9 17:49:43 2018 New Revision: 334888 URL: https://svnweb.freebsd.org/changeset/base/334888 Log: Add ZFS+GPT EFI and LEGACY+EFI to rootgen.sh and installboot.sh Reviewed by: imp (maintainer) Sponsored by: Klara Systems Differential Revision:https

svn commit: r334887 - head/tools/boot

2018-06-09 Thread Allan Jude
Author: allanjude Date: Sat Jun 9 17:47:56 2018 New Revision: 334887 URL: https://svnweb.freebsd.org/changeset/base/334887 Log: Change rootgen.sh to use the default ZFS boot environment name Reviewed by: imp (maintainer) Sponsored by: Klara Systems Differential Revision:https:

svn commit: r335099 - head/usr.bin/top

2018-06-13 Thread Allan Jude
Author: allanjude Date: Thu Jun 14 00:10:16 2018 New Revision: 335099 URL: https://svnweb.freebsd.org/changeset/base/335099 Log: Fix top(1) support for displaying ZFS Compressed ARC statistics Broken in r334514 sysctlbyname("vfs.zfs.compressed_arc_enabled", ...) would return ENOMEM w

Re: svn commit: r334514 - head/usr.bin/top

2018-06-13 Thread Allan Jude
> size_t size; > > size = sizeof(smpmode); > This broke compressed ARC display in top. The sysctl vfs.zfs.compressed_arc_enabled is backed by a boolean_t (which is the same size as an int), so trying to read it into a bool (1 byte) fails and returns ENOMEM. Fixed in r335099 -- Allan Jude signature.asc Description: OpenPGP digital signature

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

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

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: r335254 - in head/stand/i386: libi386 zfsboot

2018-06-16 Thread Allan Jude
Author: allanjude Date: Sat Jun 16 15:16:02 2018 New Revision: 335254 URL: https://svnweb.freebsd.org/changeset/base/335254 Log: Avoid reading past the end of the disk in zfsboot.c and biosdisk.c The GELI boot code rounds reads up to 4k, since the encrypted sectors are 4k, and must be dec

svn commit: r335259 - head/tools/boot

2018-06-16 Thread Allan Jude
Author: allanjude Date: Sat Jun 16 17:45:44 2018 New Revision: 335259 URL: https://svnweb.freebsd.org/changeset/base/335259 Log: rootgen.sh: Don't copy various bits of the bootcode from the running system We want to use the versions of the bootcode we just built, rather than ones from wha

svn commit: r335276 - in head/stand/i386: gptboot zfsboot

2018-06-16 Thread Allan Jude
Author: allanjude Date: Sun Jun 17 03:18:56 2018 New Revision: 335276 URL: https://svnweb.freebsd.org/changeset/base/335276 Log: gptboot, zfsboot, gptzfsboot: Enable the video and serial consoles early Normally the serial console is not enabled until /boot.config is read and we know how t

svn commit: r335279 - head/tools/boot

2018-06-16 Thread Allan Jude
Author: allanjude Date: Sun Jun 17 05:55:31 2018 New Revision: 335279 URL: https://svnweb.freebsd.org/changeset/base/335279 Log: rootgen.sh: complete all profiles except GELI+MBR (not supported) This extends the test suite to generate images for every combination of: amd64: mbr/gpt geli/n

svn commit: r335298 - head/stand/common

2018-06-17 Thread Allan Jude
Author: allanjude Date: Sun Jun 17 19:31:35 2018 New Revision: 335298 URL: https://svnweb.freebsd.org/changeset/base/335298 Log: stand/common/disk.c: Update debug printf This was missed in r330809 because it is compiled out by default Sponsored by: Klara Systems Modified: head/stand

svn commit: r335398 - in head/stand/i386: gptboot zfsboot

2018-06-19 Thread Allan Jude
Author: allanjude Date: Wed Jun 20 00:14:54 2018 New Revision: 335398 URL: https://svnweb.freebsd.org/changeset/base/335398 Log: Revert r335276 This was causing issues for people booting. I will likely bring this back as an optional feature, similar to boot0sio, like gptboot-serial or s

Re: svn commit: r335276 - in head/stand/i386: gptboot zfsboot

2018-06-19 Thread Allan Jude
On 2018-06-19 16:30, O. Hartmann wrote: > Am Sun, 17 Jun 2018 03:18:57 + (UTC) > Allan Jude schrieb: > >> Author: allanjude >> Date: Sun Jun 17 03:18:56 2018 >> New Revision: 335276 >> URL: https://svnweb.freebsd.org/changeset/base/335276 > >> Log:

Re: svn commit: r335276 - in head/stand/i386: gptboot zfsboot

2018-06-19 Thread Allan Jude
On 2018-06-17 07:32, Eugene Grosbein wrote: > 17.06.2018 10:18, Allan Jude wrote: > >> Author: allanjude >> Date: Sun Jun 17 03:18:56 2018 >> New Revision: 335276 >> URL: https://svnweb.freebsd.org/changeset/base/335276 >> >> Log: >> gptboot,

svn commit: r326506 - in head/sys/contrib/zstd/lib: common compress

2017-12-03 Thread Allan Jude
Author: allanjude Date: Mon Dec 4 01:16:26 2017 New Revision: 326506 URL: https://svnweb.freebsd.org/changeset/base/326506 Log: Use __has_builtin() to ensure clz and clzll builtins are available The existing check of the GCC version number is not sufficient This fixes the build on spa

svn commit: r326507 - head/stand/i386/zfsboot

2017-12-03 Thread Allan Jude
Author: allanjude Date: Mon Dec 4 02:42:00 2017 New Revision: 326507 URL: https://svnweb.freebsd.org/changeset/base/326507 Log: increase maximum size of zfsboot Previous to the switch from sys/boot to stand/ zfsboot (used for MBR) did not support GELI. Now that it is compiled with GELI,

Re: svn commit: r316980 - head/contrib/zstd/programs

2017-12-05 Thread Allan Jude
gt; == >>> --- head/contrib/zstd/programs/zstdcli.cSat Apr 15 20:06:24 2017 >>> (r316979) >>> +++ head/contrib/zstd/programs/zstdcli.cSat Apr 15 20:15:44 2017 >>>

Re: svn commit: r327934 - head/sys/contrib/zstd/lib/freebsd

2018-01-13 Thread Allan Jude
> zstd: Use memalloc(9) for calloc macro. >> >> This is in contrib code but since we only have memalloc(9) in current we >> will not upstream this. > > Fortunately, zstd_kfreebsd.h is not contrib code but local code. We > don't have to worry about upstreaming this chan

Re: svn commit: r327940 - head/sys/contrib/zstd/lib/freebsd

2018-01-13 Thread Allan Jude
houldn't the local code be in usr.bin/zstd ? > > Pedro. > This .h file is only used for the kernel version of zstd, not the userland version. -- Allan Jude ___ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinf

Re: svn commit: r332070 - in head/sys/geom: . label raid

2018-04-05 Thread Allan Jude
something here, but it seems like you didn't actually change the side of struct md_s { ... char ident[32]; ... } And I don't see where the destination buffer went from 24 bytes to a larger value. -- Allan Jude signature.asc Description: OpenPGP digital signature

Re: svn commit: r332070 - in head/sys/geom: . label raid

2018-04-05 Thread Allan Jude
On 2018-04-05 21:20, Conrad Meyer wrote: > On Thu, Apr 5, 2018 at 6:08 PM, Allan Jude wrote: >> On 2018-04-05 09:56, Sean Bruno wrote: >>> Author: sbruno >>> Date: Thu Apr 5 13:56:40 2018 >>> New Revision: 332070 >>> URL: https://svnweb.freebsd.org/ch

Re: svn commit: r332365 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2018-04-10 Thread Allan Jude
ust it by dividing the user set value by the page size. The current name is great, but I wouldn't want anyone to end up setting it to 4096x the value they actually want if we just changed it out from under them. -- Allan Jude signature.asc Description: OpenPGP digital signature

Re: svn commit: r315449 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2018-04-10 Thread Allan Jude
On 2018-02-25 22:56, Allan Jude wrote: > On 2017-03-17 08:34, Steven Hartland wrote: >> Author: smh >> Date: Fri Mar 17 12:34:57 2017 >> New Revision: 315449 >> URL: https://svnweb.freebsd.org/changeset/base/315449 >> >> Log: >> Reduce ARC fragmentati

svn commit: r332662 - head/usr.sbin/iostat

2018-04-17 Thread Allan Jude
Author: allanjude Date: Wed Apr 18 02:25:03 2018 New Revision: 332662 URL: https://svnweb.freebsd.org/changeset/base/332662 Log: Make `iostat -xC` print CPU information on its own line Requested by: mahrens Reviewed by: kenm (maintainer), mahrens MFC after:1 week Relnotes: ye

Re: svn commit: r332559 - head/usr.sbin/mountd

2018-04-19 Thread Allan Jude
so need to go in the exports structure), it might be about time to rev. the exports structure? rick I second the request for FSID as an export option. It is important for having smooth failover between NFS servers. -- Allan Jude ___ svn-src-head@freebsd.

svn commit: r318448 - head/usr.bin/top

2017-05-18 Thread Allan Jude
Author: allanjude Date: Thu May 18 12:55:07 2017 New Revision: 318448 URL: https://svnweb.freebsd.org/changeset/base/318448 Log: Explain the new fields in top(1) related to ZFS compressed ARC Reviewed by: bcr X-MFC-with: 316314 Differential Revision:https://reviews.freebsd.or

Re: svn commit: r318757 - head

2017-05-23 Thread Allan Jude
> 64bit inodes allow you to have more than 4 billion files in one file system, or NFS mount. The project also includes fixing a number of other long-standing-because-of-ABI changes, like the max length of a mountpoint is now 1024 instead of some small value (60 or 80 or something it was before) -- Allan Jude signature.asc Description: OpenPGP digital signature

svn commit: r318765 - in head: lib/libc/sys share/man/man4 sys/compat/freebsd32 sys/kern

2017-05-23 Thread Allan Jude
Author: allanjude Date: Wed May 24 00:58:30 2017 New Revision: 318765 URL: https://svnweb.freebsd.org/changeset/base/318765 Log: Allow cpuset_{get,set}affinity in capabilities mode bhyve was recently sandboxed with capsicum, and needs to be able to control the CPU sets of its vcpu threads

svn commit: r318767 - in head/sys: compat/freebsd32 kern

2017-05-23 Thread Allan Jude
Author: allanjude Date: Wed May 24 01:01:57 2017 New Revision: 318767 URL: https://svnweb.freebsd.org/changeset/base/318767 Log: Followup to r318765 (capsicumize cpuset_*affinity) Update *sysent files Modified: head/sys/compat/freebsd32/freebsd32_sysent.c head/sys/kern/init_sysent.c M

svn commit: r319610 - head/usr.sbin/sesutil

2017-06-05 Thread Allan Jude
Author: allanjude Date: Tue Jun 6 02:03:22 2017 New Revision: 319610 URL: https://svnweb.freebsd.org/changeset/base/319610 Log: usr.sbin/sesutil: 'locate all off' does not deactivate empty slots PR: 217409 Reported by: asomers Reviewed by: asomers, bapt MFC after:1 we

svn commit: r319611 - in head: sys/kern sys/sys usr.sbin/jail

2017-06-05 Thread Allan Jude
Author: allanjude Date: Tue Jun 6 02:15:00 2017 New Revision: 319611 URL: https://svnweb.freebsd.org/changeset/base/319611 Log: Jails: Optionally prevent jailed root from binding to privileged ports You may now optionally specify allow.noreserved_ports to prevent root inside a jail from

Re: svn commit: r319611 - in head: sys/kern sys/sys usr.sbin/jail

2017-06-07 Thread Allan Jude
On June 7, 2017 4:20:33 AM EDT, Alexander Leidinger wrote: > >Quoting Allan Jude (from Tue, 6 Jun 2017 >02:15:01 + (UTC)): > >> Author: allanjude >> Date: Tue Jun 6 02:15:00 2017 >> New Revision: 319611 >> URL: https://svnweb.freebsd.org/changes

svn commit: r319671 - head/cddl/contrib/opensolaris/cmd/zpool

2017-06-07 Thread Allan Jude
Author: allanjude Date: Thu Jun 8 01:29:24 2017 New Revision: 319671 URL: https://svnweb.freebsd.org/changeset/base/319671 Log: SHA-512 and Skein have been supported by the boot loader for some time. Submitted by: lifanov Reviewed by: bcr Sponsored by: BSDCan Dev Summit Modified: h

svn commit: r319672 - head/cddl/contrib/opensolaris/cmd/zpool

2017-06-07 Thread Allan Jude
Author: allanjude Date: Thu Jun 8 01:39:17 2017 New Revision: 319672 URL: https://svnweb.freebsd.org/changeset/base/319672 Log: New sentences start on new lines, fix two violations Reviewed by: bcr Sponsored by: BSDCan Dev Summit Modified: head/cddl/contrib/opensolaris/cmd/zpool/zpoo

svn commit: r319863 - head/usr.sbin/bsdinstall/scripts

2017-06-12 Thread Allan Jude
Author: allanjude Date: Mon Jun 12 19:29:31 2017 New Revision: 319863 URL: https://svnweb.freebsd.org/changeset/base/319863 Log: bsdinstall: Make ZFS min_auto_ashift adjustment persistent Reported by: feld Reviewed by: dteske, tsoome MFC after:3 days Sponsored by: ScaleEngine In

svn commit: r319864 - head/usr.sbin/bsdinstall/scripts

2017-06-12 Thread Allan Jude
Author: allanjude Date: Mon Jun 12 19:31:26 2017 New Revision: 319864 URL: https://svnweb.freebsd.org/changeset/base/319864 Log: bsdinstall: support Auto ZFS mode for ARM64 Reported by: Shawn Webb MFC after:3 days Modified: head/usr.sbin/bsdinstall/scripts/auto Modified: head/usr

svn commit: r319866 - head/usr.bin/top

2017-06-12 Thread Allan Jude
Author: allanjude Date: Mon Jun 12 19:51:57 2017 New Revision: 319866 URL: https://svnweb.freebsd.org/changeset/base/319866 Log: top: Change the way the ZFS ARC compression ratio is calculated Based on feedback from OpenZFS developers Matt Ahrens and George Wilson, the calculation of the

svn commit: r319867 - head/usr.bin/top

2017-06-12 Thread Allan Jude
Author: allanjude Date: Mon Jun 12 19:54:42 2017 New Revision: 319867 URL: https://svnweb.freebsd.org/changeset/base/319867 Log: top: Missing man page update for r319866 MFC after:3 days Modified: head/usr.bin/top/top.local.1 Modified: head/usr.bin/top/top.local.1 ==

Re: svn commit: r320242 - head/etc/ntp

2017-06-22 Thread Allan Jude
IST does. > >> >> >> -- Ian >> >>> Â 227206080010 # 1 Jan 1972 >>> Â 228778560011 # 1 Jul 1972 >>> @@ -216,5 +216,5 @@ >>> Â # the hash line is also ignored in the >>> Â # computation. >>> Â #

svn commit: r320553 - head/sys/boot/efi/libefi

2017-07-01 Thread Allan Jude
Author: allanjude Date: Sat Jul 1 20:25:22 2017 New Revision: 320553 URL: https://svnweb.freebsd.org/changeset/base/320553 Log: Integer underflow in efipart_realstrategy when I/O starts after end of disk This fixes an integer underflow in efipart_realstrategy, which causes crashes when a

svn commit: r320554 - in head: lib/libmd sys/modules/crypto

2017-07-01 Thread Allan Jude
Author: allanjude Date: Sat Jul 1 21:18:06 2017 New Revision: 320554 URL: https://svnweb.freebsd.org/changeset/base/320554 Log: Increase loop unrolling for skein hashes This patch was inspired by an opposite change made to shrink the code for the boot loader. On my i7-4770, it incre

svn commit: r320555 - head/usr.sbin/diskinfo

2017-07-01 Thread Allan Jude
Author: allanjude Date: Sat Jul 1 21:34:57 2017 New Revision: 320555 URL: https://svnweb.freebsd.org/changeset/base/320555 Log: Add -s (serial) and -p (physpath) to diskinfo Return the bare requested information, intended for scripting. The serial number of a SAS/SCSI device can be re

Re: svn commit: r320555 - head/usr.sbin/diskinfo

2017-07-01 Thread Allan Jude
On 2017-07-01 17:34, Allan Jude wrote: > Author: allanjude > Date: Sat Jul 1 21:34:57 2017 > New Revision: 320555 > URL: https://svnweb.freebsd.org/changeset/base/320555 > > Log: > Add -s (serial) and -p (physpath) to diskinfo > > Return the bare requeste

svn commit: r320576 - head/usr.sbin/diskinfo

2017-07-02 Thread Allan Jude
Author: allanjude Date: Sun Jul 2 16:20:49 2017 New Revision: 320576 URL: https://svnweb.freebsd.org/changeset/base/320576 Log: diskinfo(8): correct typo in man page Reported by: N.J. Mann Modified: head/usr.sbin/diskinfo/diskinfo.8 Modified: head/usr.sbin/diskinfo/diskinfo.8 ===

svn commit: r320644 - in head: bin/rcp libexec/rlogind libexec/rshd usr.bin/rlogin usr.bin/rsh usr.bin/ruptime usr.bin/rwho usr.sbin/rwhod

2017-07-04 Thread Allan Jude
Author: allanjude Date: Tue Jul 4 15:44:30 2017 New Revision: 320644 URL: https://svnweb.freebsd.org/changeset/base/320644 Log: Add deprecation notices for all rcmd tools Submitted by: bcr Reviewed by: emaste, bapt, jhl MFC after:immediate Relnotes: yes Differential Revisi

Re: svn commit: r308810 - head/bin/dd

2016-11-19 Thread Allan Jude
il this commit) ... I haven't tried building > head on stable/11 as of yet, but I assume it will break there too? > > sean > > It breaks building dd as a 'build tool', so it will break building everything i think. -- Allan Jude signature.asc Description: OpenPGP digital signature

Re: svn commit: r353057 - head/sys/net

2019-10-06 Thread Allan Jude
ort basis. Renaming a tun device >> to "usbctl", which doesn't exist as an ifnet but does as a /dev, is clearly >> not that disastrous, but we can't and won't create a /dev for that. >> > > It's been brought to my attention that I actually

Re: svn commit: r345491 - in head/sys: conf fs/tmpfs modules/tmpfs

2019-09-03 Thread Allan Jude
On 2019-03-25 15:17, Cy Schubert wrote: > In message <3398a21318a4a6715609004d569d20de86f1dc7a.ca...@freebsd.org> > , Ian Le > pore writes: >> On Mon, 2019-03-25 at 05:42 -0700, Cy Schubert wrote: >>> In message <201903250746.x2p7kkuu019...@repo.freebsd

Re: svn commit: r351812 - head/usr.sbin/mpsutil

2019-09-04 Thread Allan Jude
anged) > Modified: >   head/usr.sbin/mpsutil/Makefile >   head/usr.sbin/mpsutil/mps_cmd.c >   head/usr.sbin/mpsutil/mpsutil.h > > > Is this redundant with sesutil, or does it work on different kinds of > enclosures?  mpsutil's method will work on direct-attach backplanes and enclosures, where sesutil only works if there is an expander that provides the SES service. -- Allan Jude signature.asc Description: OpenPGP digital signature

svn commit: r352504 - head/sys/vm

2019-09-19 Thread Allan Jude
Author: allanjude Date: Thu Sep 19 07:28:24 2019 New Revision: 352504 URL: https://svnweb.freebsd.org/changeset/base/352504 Log: sys/vm/vm_glue.c: Incorrect function name in panic string Use __func__ to avoid this issue in the future. Submitted by: Wuyang Chung Reviewed by: markj,

svn commit: r348370 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2019-05-29 Thread Allan Jude
Author: allanjude Date: Wed May 29 20:34:35 2019 New Revision: 348370 URL: https://svnweb.freebsd.org/changeset/base/348370 Log: Fix assertion in ZFS TRIM code Due to an attempt to check two conditions at once in a macro not designed as such, the assertion would always evaluate to true.

svn commit: r348699 - head/lib/libmd

2019-06-05 Thread Allan Jude
Author: allanjude Date: Wed Jun 5 20:18:08 2019 New Revision: 348699 URL: https://svnweb.freebsd.org/changeset/base/348699 Log: sha.3: clarify admonition against use in NEW signature schemes Reported by: cem, cperciva (grammar) Modified: head/lib/libmd/sha.3 Modified: head/lib/libmd/s

svn commit: r348714 - head/cddl/contrib/opensolaris/cmd/zpool

2019-06-05 Thread Allan Jude
Author: allanjude Date: Thu Jun 6 01:32:00 2019 New Revision: 348714 URL: https://svnweb.freebsd.org/changeset/base/348714 Log: zpool.8: the comment property is not read-only The comment property was listed in the man page twice, once under the list of read-only properties, and again (co

svn commit: r349235 - head/usr.bin/top

2019-06-20 Thread Allan Jude
Author: allanjude Date: Thu Jun 20 15:44:43 2019 New Revision: 349235 URL: https://svnweb.freebsd.org/changeset/base/349235 Log: top(1): Don't show the swap line when there are no swap devices Submitted by: antran...@freebsd.am Reviewed by: bapt MFC after:1 month Sponsored by: Kl

svn commit: r362396 - in head: cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zpool sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2020-06-19 Thread Allan Jude
Author: allanjude Date: Fri Jun 19 17:59:55 2020 New Revision: 362396 URL: https://svnweb.freebsd.org/changeset/base/362396 Log: ZFS: Allow setting checksum=skein on boot pools PR: 245889 Reported by: delphij Sponsored by: Klara Inc. Modified: head/cddl/contrib/opensolaris

svn commit: r362412 - head/sbin/md5

2020-06-19 Thread Allan Jude
Author: allanjude Date: Fri Jun 19 19:16:25 2020 New Revision: 362412 URL: https://svnweb.freebsd.org/changeset/base/362412 Log: md5(1): fix -c flag to work with input on stdin Previously, the -p and -c flags were ignored when reading from stdin Additionally, -s and -c can be used togethe

svn commit: r362505 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2020-06-22 Thread Allan Jude
Author: allanjude Date: Mon Jun 22 19:03:02 2020 New Revision: 362505 URL: https://svnweb.freebsd.org/changeset/base/362505 Log: MFOpenZFS: Add zio_ddt_free()+ddt_phys_decref() error handling The assumption in zio_ddt_free() is that ddt_phys_select() must always find a match. However, if

svn commit: r362652 - head/sbin/ifconfig

2020-06-26 Thread Allan Jude
Author: allanjude Date: Fri Jun 26 15:14:03 2020 New Revision: 362652 URL: https://svnweb.freebsd.org/changeset/base/362652 Log: ifconfig(8): remove duplicate line from man page Reported by: Weitian LI Sponsored by: Klara Inc. Modified: head/sbin/ifconfig/ifconfig.8 Modified: head/s

svn commit: r362654 - head/sbin/ifconfig

2020-06-26 Thread Allan Jude
Author: allanjude Date: Fri Jun 26 16:20:34 2020 New Revision: 362654 URL: https://svnweb.freebsd.org/changeset/base/362654 Log: ifconfig(8): optimize -f ether:dash mode Switch to the simplified while loop suggest by Aaron LI Post commit review via: https://reviews.freebsd.org/rS301185

svn commit: r363097 - head/usr.sbin/bsdinstall/scripts

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 15:32:53 2020 New Revision: 363097 URL: https://svnweb.freebsd.org/changeset/base/363097 Log: bsdinstall: kill dhclient before starting a new instance PR: 205821 Submitted by: William Orr MFC after:2 weeks Sponsored by: Klara Inc. Ev

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

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 16:57:44 2020 New Revision: 363100 URL: https://svnweb.freebsd.org/changeset/base/363100 Log: defaults/rc.conf: note that the default is ppp_nat="YES" PR: 243062 Submitted by: Evilham MFC after:2 weeks Sponsored by: Klara Inc. Differ

svn commit: r363101 - head/usr.sbin/bsdinstall/scripts

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 17:06:48 2020 New Revision: 363101 URL: https://svnweb.freebsd.org/changeset/base/363101 Log: bsdinstall: don't fail if fstab is empty PR: 210865 Submitted by: Tim Lukasiewicz , h-fujish...@sakura.ad.jp (original version) Reported by: h-fuj

Re: svn commit: r363097 - head/usr.sbin/bsdinstall/scripts

2020-07-11 Thread Allan Jude
On 2020-07-11 11:44, Mateusz Guzik wrote: > On 7/11/20, Allan Jude wrote: >> Author: allanjude >> Date: Sat Jul 11 15:32:53 2020 >> New Revision: 363097 >> URL: https://svnweb.freebsd.org/changeset/base/363097 >> >> Log: >> bsdinstall: kill dhcli

svn commit: r363103 - head/usr.sbin/bsdinstall/scripts

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 17:20:17 2020 New Revision: 363103 URL: https://svnweb.freebsd.org/changeset/base/363103 Log: bsdinstall: only kill the dhclient for the interface we are restarting PR: 205821 Reported by: mjg MFC after:2 weeks Sponsored by: Klara Inc.

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

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 18:04:09 2020 New Revision: 363104 URL: https://svnweb.freebsd.org/changeset/base/363104 Log: procctl(2): consistently refer to the last agrument as 'data' Some older references called it 'arg' Also fix a syntax error that was underlining an entire se

svn commit: r363105 - head/usr.sbin/ppp

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 18:24:16 2020 New Revision: 363105 URL: https://svnweb.freebsd.org/changeset/base/363105 Log: ppp: Document the fact that ppp_nat is enabled by default No functional change. PR: 243062 Submitted by: Evilham (original version) MFC after:

svn commit: r363107 - head/sbin/reboot

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 19:18:43 2020 New Revision: 363107 URL: https://svnweb.freebsd.org/changeset/base/363107 Log: boot(8): Add additional cross references Provide hints to direct people towards gptzfsboot, zfsbootcfg, efibootmgr, etc PR: 199103 MFC after:

svn commit: r363108 - head/sbin/reboot

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 19:29:24 2020 New Revision: 363108 URL: https://svnweb.freebsd.org/changeset/base/363108 Log: boot(8): fix sorting of cross references Reported by: yuripv Event:July 2020 Bugathon Modified: head/sbin/reboot/boot_i386.8 Modified: head

svn commit: r363109 - head/usr.sbin/nscd

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 19:44:12 2020 New Revision: 363109 URL: https://svnweb.freebsd.org/changeset/base/363109 Log: nscd: does not warn about invalid values what parsing config file PR: 202135 Submitted by: am...@amutu.com Reported By: trond.endres...@ximalas.inf

svn commit: r363110 - in head: share/man/man5 usr.sbin/periodic usr.sbin/periodic/etc/daily

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 20:53:31 2020 New Revision: 363110 URL: https://svnweb.freebsd.org/changeset/base/363110 Log: Add a periodic script to backup the partition table and boot code Optionally, alert you if the contents change from the previous backup PR: 86388

svn commit: r363111 - in head: libexec/getty share/man/man4

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 20:56:57 2020 New Revision: 363111 URL: https://svnweb.freebsd.org/changeset/base/363111 Log: Add cross references betwen ttys(5) and related drivers nmdm(4), ucom(4), and uart(4) PR: 247638 Submitted by: Pau Amma Reported by: 0mp MF

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

2020-07-11 Thread Allan Jude
Author: allanjude Date: Sat Jul 11 22:14:44 2020 New Revision: 363114 URL: https://svnweb.freebsd.org/changeset/base/363114 Log: periodic.conf: correct capitailization in the middle of a sentence Reported by: yuripv Event:July 2020 Bugathon Modified: head/share/man/man

svn commit: r363139 - head/stand/man

2020-07-12 Thread Allan Jude
Author: allanjude Date: Mon Jul 13 02:09:21 2020 New Revision: 363139 URL: https://svnweb.freebsd.org/changeset/base/363139 Log: Loader: explain the syntax of currdev The origin text was: "Syntax for devices is odd." That is not very helpful. PR: 199103 Reviewed by: keva

svn commit: r363142 - head/libexec/rc/rc.d

2020-07-13 Thread Allan Jude
Author: allanjude Date: Mon Jul 13 13:44:54 2020 New Revision: 363142 URL: https://svnweb.freebsd.org/changeset/base/363142 Log: Remove excess spaces from rc.d scripts The space between words is already being echoed by the space between quoted strings: % echo 'foo' 'bar' foo

Re: svn commit: r363103 - head/usr.sbin/bsdinstall/scripts

2020-07-13 Thread Allan Jude
On 2020-07-12 13:32, Enji Cooper wrote: > >> On Jul 11, 2020, at 10:20 AM, Allan Jude wrote: >> >> Author: allanjude >> Date: Sat Jul 11 17:20:17 2020 >> New Revision: 363103 >> URL: https://svnweb.freebsd.org/changeset/base/363103 >> >>

svn commit: r363169 - head/usr.sbin/periodic/etc/daily

2020-07-13 Thread Allan Jude
Author: allanjude Date: Tue Jul 14 00:46:20 2020 New Revision: 363169 URL: https://svnweb.freebsd.org/changeset/base/363169 Log: Actually install the new 221.backup-gpart periodic script Submitted by: Rob Fairbanks Reported by: Michael Butler MFC with: r363110 Sponsored by: Kla

svn commit: r363223 - head/share/man/man4

2020-07-15 Thread Allan Jude
Author: allanjude Date: Wed Jul 15 14:27:23 2020 New Revision: 363223 URL: https://svnweb.freebsd.org/changeset/base/363223 Log: vlan(4): Minor grammar corrections Note: date not bumped because "content" was not changed, just inserted some missing words. PR: 248001 Submit

svn commit: r363224 - head/cddl/contrib/opensolaris/cmd/zpool

2020-07-15 Thread Allan Jude
Author: allanjude Date: Wed Jul 15 14:38:15 2020 New Revision: 363224 URL: https://svnweb.freebsd.org/changeset/base/363224 Log: zpool-features(7): Note that the boot loader has support for large_blocks Since r304321 (-current: Aug 18, 2016) and r328866 (stable/11: Feb 5, 2018) the FreeBS

svn commit: r363255 - head/sys/dev/virtio/block

2020-07-16 Thread Allan Jude
Author: allanjude Date: Thu Jul 16 16:32:16 2020 New Revision: 363255 URL: https://svnweb.freebsd.org/changeset/base/363255 Log: Add VIRTIO_BLK_T_DISCARD support to the virtio-blk driver If the hypervisor advertises support for the DISCARD command then the guest can perform TRIM commands,

svn commit: r363286 - head/usr.bin/at

2020-07-17 Thread Allan Jude
Author: allanjude Date: Fri Jul 17 20:43:00 2020 New Revision: 363286 URL: https://svnweb.freebsd.org/changeset/base/363286 Log: at(1): Fix location of at(1) crontab With r318443, atrun was moved from /etc/crontab to /etc/cron.d/at, but the man-page was unfortunately not updated to reflec

svn commit: r363324 - head/usr.bin/at

2020-07-19 Thread Allan Jude
Author: allanjude Date: Sun Jul 19 14:42:13 2020 New Revision: 363324 URL: https://svnweb.freebsd.org/changeset/base/363324 Log: at(1): Markup environment variables with proper macros Submitted by: debdrup Reported by: 0mp Reviewed by: imp Sponsored by: Klara Inc. Differential Rev

svn commit: r367393 - head/usr.sbin/bhyve

2020-11-05 Thread Allan Jude
Author: allanjude Date: Thu Nov 5 17:10:14 2020 New Revision: 367393 URL: https://svnweb.freebsd.org/changeset/base/367393 Log: VirtIO: Make sure the guest knows the TRIM alignment requirements If bhyve is used to emulate 512e access in guest OS, then discard addresses should be properly

svn commit: r360229 - head/usr.sbin/bhyve

2020-04-23 Thread Allan Jude
Author: allanjude Date: Thu Apr 23 19:20:58 2020 New Revision: 360229 URL: https://svnweb.freebsd.org/changeset/base/360229 Log: Add VIRTIO_BLK_T_DISCARD (TRIM) support to the bhyve virtio-blk backend This will advertise support for TRIM to the guest virtio-blk driver and perform the DIOC

svn commit: r360230 - head/usr.sbin/trim

2020-04-23 Thread Allan Jude
Author: allanjude Date: Thu Apr 23 20:14:59 2020 New Revision: 360230 URL: https://svnweb.freebsd.org/changeset/base/360230 Log: trim(8): candelete() returns wrong results because fd is opened O_WRONLY This was discovered while using trim(8) to test bhyve trim Reviewed by: asomers D

Re: svn commit: r361870 - in head/sys/geom: . label

2020-06-06 Thread Allan Jude
>> Revert r361838 > > Why? > https://lists.freebsd.org/pipermail/freebsd-current/2020-June/076210.html -- Allan Jude signature.asc Description: OpenPGP digital signature

svn commit: r324206 - head/usr.sbin/bsdinstall/scripts

2017-10-02 Thread Allan Jude
Author: allanjude Date: Mon Oct 2 14:19:31 2017 New Revision: 324206 URL: https://svnweb.freebsd.org/changeset/base/324206 Log: bsdinstall(8) hardening menu: Utilize new kern.randompid=1 behaviour Enabling the PID randomization option in bsdinstall(8)'s hardening menu now randomizes the

Re: svn commit: r318751 - in head/sys: kern sys

2017-10-21 Thread Allan Jude
e changed my mind a bit. I think we should make the default be off (so you can't see processes in a jail from the host) by default in 12. And that we should MFC this sysctl to stable/11, but not change the default behaviour there. Anyone else have thoughts? -- Allan Jude signature.asc Description: OpenPGP digital signature

Re: svn commit: r318751 - in head/sys: kern sys

2017-10-21 Thread Allan Jude
at, 21 Oct 2017 at 20:29, Allan Jude <mailto:allanj...@freebsd.org>> wrote: > > On 2017-05-23 12:59, Steve Wills wrote: > > Author: swills (ports committer) > > Date: Tue May 23 16:59:24 2017 > > New Revision: 318751 > > URL: https://

svn commit: r325715 - head/usr.bin/vmstat

2017-11-11 Thread Allan Jude
Author: allanjude Date: Sat Nov 11 14:02:21 2017 New Revision: 325715 URL: https://svnweb.freebsd.org/changeset/base/325715 Log: vmstat: fix duplicate key in libxo output In the libxo output from vmstat, the number of pages that have been paged out uses the same key name as the number of

Re: svn commit: r316980 - head/contrib/zstd/programs

2017-11-16 Thread Allan Jude
e 'delete' flag for the specific invocation cases inside zstdcli.c, rather than modifying the default as was done in this commit. I think we can deal with changing the default verbosity level. I think if we want to compromise, we make 2 additional hard links, zzip and zunzip t

Re: svn commit: r326095 - head/usr.sbin/bsdinstall/scripts

2017-11-24 Thread Allan Jude
e point of this thread was which option the installer should use to implement 'set the correct time on first boot'. We are not talking about removing ntpdate in this thread. -- Allan Jude ___ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

svn commit: r335868 - head/stand/common

2018-07-02 Thread Allan Jude
Author: allanjude Date: Mon Jul 2 18:19:08 2018 New Revision: 335868 URL: https://svnweb.freebsd.org/changeset/base/335868 Log: stand/common/disk.c: Read partition table relative to the start of the disk If a disk is of an oddball size, like the 200mb + 512b used in rootgen.sh, when disk

svn commit: r335883 - head/stand/common

2018-07-02 Thread Allan Jude
Author: allanjude Date: Tue Jul 3 05:53:27 2018 New Revision: 335883 URL: https://svnweb.freebsd.org/changeset/base/335883 Log: stand/common/disk.c: dev->d_offset still needs to be set to 0 With r335868, I thought this was no longer necessary. I was wrong. Reported by: ian Sponsore

Re: svn commit: r335963 - in head: etc share/mk tools/build/mk tools/build/options

2018-07-04 Thread Allan Jude
D's cdb to make much smaller .db files. Here is bapt@'s original work: https://people.freebsd.org/~bapt/cdbrw.diff -- Allan Jude signature.asc Description: OpenPGP digital signature

Re: svn commit: r336451 - in head/sys/dev/mlx5: . mlx5_core mlx5_en

2018-07-19 Thread Allan Jude
- Ian > I think you have the wrong commit. This commit only changes some static strings, and copyright comments. -- Allan Jude signature.asc Description: OpenPGP digital signature

svn commit: r336660 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys

2018-07-23 Thread Allan Jude
Author: allanjude Date: Tue Jul 24 04:38:11 2018 New Revision: 336660 URL: https://svnweb.freebsd.org/changeset/base/336660 Log: ZFS: Reserve DMU_BACKUP_FEATURE flags for Native Encryption and ZSTD Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h Modified: head/s

svn commit: r345464 - head/sys/dev/cfi

2019-03-24 Thread Allan Jude
Author: allanjude Date: Sun Mar 24 06:28:25 2019 New Revision: 345464 URL: https://svnweb.freebsd.org/changeset/base/345464 Log: Fix AMD type flash write operations, and display chip information at boot Applies to MX flash chips on AR9132 and RT3050 Submitted by: Hiroki Mori Reviewe

svn commit: r345492 - head/sys/mips/atheros

2019-03-25 Thread Allan Jude
Author: allanjude Date: Mon Mar 25 07:48:52 2019 New Revision: 345492 URL: https://svnweb.freebsd.org/changeset/base/345492 Log: The Atheros AR7241 has 20 GPIO pins AR724X_GPIO_PINS used for this family is defined as 18 The datasheet for the AR7241 describes 20 pins, allow all to be used.

  1   2   3   4   >