Re: svn commit: r365917 - in releng/12.2: cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zpool sys/cddl/compat/opensolaris/kern sys/cddl/compat/opensolaris/sys sys/cddl/contrib/opensola

2020-12-17 Thread Stefan Esser
Am 17.12.20 um 10:00 schrieb Stefan Esser: Am 16.12.20 um 21:30 schrieb Alan Somers: This sounds quite useful!  I've often wished that I could see per-dataset traffic statistics.  Are there any user-friendly frontends to this?  Like zfs-stats, or an updated zpool iostat? I have updated zfs

Re: svn commit: r365917 - in releng/12.2: cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zpool sys/cddl/compat/opensolaris/kern sys/cddl/compat/opensolaris/sys sys/cddl/contrib/opensola

2020-12-17 Thread Stefan Esser
Am 16.12.20 um 21:30 schrieb Alan Somers: On Sat, Sep 19, 2020 at 2:47 PM Allan Jude > wrote: Author: allanjude Date: Sat Sep 19 20:46:56 2020 New Revision: 365917 URL: https://svnweb.freebsd.org/changeset/base/365917

Re: svn commit: r368606 - head/usr.bin/calendar

2020-12-13 Thread Stefan Esser
Am 13.12.20 um 12:13 schrieb Yuri Pankov: Stefan Eßer wrote: Author: se Date: Sun Dec 13 09:38:50 2020 New Revision: 368606 URL: https://svnweb.freebsd.org/changeset/base/368606 Log:    Fix WITHOUT_ICONV build    There was an unprotected use of nl_langinfo() to determine the order of   

Re: svn commit: r368072 - in head/contrib/bc: . gen include manuals manuals/bc manuals/dc src src/bc src/dc src/history src/rand tests

2020-11-27 Thread Stefan Esser
Am 26.11.20 um 23:47 schrieb Cy Schubert: A clean build (sort of) did fix it: rm the appropriate subdir actually. Now I see what caused your issues: The file lib.c is created by running strgen.sh with parameters from the Makefile, and the invocation of this script changed. I have made the

Re: svn commit: r368072 - in head/contrib/bc: . gen include manuals manuals/bc manuals/dc src src/bc src/dc src/history src/rand tests

2020-11-26 Thread Stefan Esser
23 schrieb Stefan Esser: Am 26.11.20 um 21:03 schrieb Cy Schubert:> But this is still a problem: ld: error: undefined symbol: bc_lib_name referenced by vm.c:752 (/opt/src/svn-current/contrib/bc/src/vm.c:752)    lto.tmp:(bc_vm_boot) ld: error: undefined symbol: bc_lib referenced

Re: svn commit: r368072 - in head/contrib/bc: . gen include manuals manuals/bc manuals/dc src src/bc src/dc src/history src/rand tests

2020-11-26 Thread Stefan Esser
Am 26.11.20 um 21:03 schrieb Cy Schubert:> But this is still a problem: ld: error: undefined symbol: bc_lib_name referenced by vm.c:752 (/opt/src/svn-current/contrib/bc/src/vm.c:752) lto.tmp:(bc_vm_boot) ld: error: undefined symbol: bc_lib referenced by lex.c:225

Re: svn commit: r368072 - in head/contrib/bc: . gen include manuals manuals/bc manuals/dc src src/bc src/dc src/history src/rand tests

2020-11-26 Thread Stefan Esser
Am 26.11.20 um 19:19 schrieb O. Hartmann: svn-src-h...@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" Buildworld fails with "don't know how to make bc/bc.c": ===> usr.sbin/ndp (all) - ---

Re: svn commit: r367813 - head/lib/libutil

2020-11-25 Thread Stefan Esser
Am 19.11.20 um 00:20 schrieb Brooks Davis: On Thu, Nov 19, 2020 at 12:05:51AM +0100, Stefan Esser wrote: Am 18.11.20 um 23:14 schrieb Jessica Clarke: Why not? There could easily be code out there calling getenv in a multi-threaded context so this is inadequate as a replacement. Yes it's

Re: svn commit: r367813 - head/lib/libutil

2020-11-25 Thread Stefan Esser
Am 19.11.20 um 01:37 schrieb Mateusz Guzik: On 11/19/20, Stefan Esser wrote: [...] I just wanted to provide an implementation of this functionality to be used in a number of programs where other developers had expressed interest in such a feature (and one of these programs has been worked

Re: svn commit: r367813 - head/lib/libutil

2020-11-18 Thread Stefan Esser
Am 18.11.20 um 23:39 schrieb Jessica Clarke: On 18 Nov 2020, at 22:32, Stefan Esser wrote: Am 18.11.20 um 22:40 schrieb Mateusz Guzik: +{ + static const int localbase_oid[2] = {CTL_USER, USER_LOCALBASE}; There is no use for this to be static. Why not? This makes it part

Re: svn commit: r367813 - head/lib/libutil

2020-11-18 Thread Stefan Esser
Am 18.11.20 um 23:14 schrieb Jessica Clarke: On 18 Nov 2020, at 21:52, Stefan Esser wrote: Am 18.11.20 um 22:15 schrieb Jessica Clarke: On 18 Nov 2020, at 19:44, Stefan Eßer wrote: + /* +* Check for some other thread already having +* set

Re: svn commit: r367813 - head/lib/libutil

2020-11-18 Thread Stefan Esser
Am 18.11.20 um 22:40 schrieb Mateusz Guzik: +{ + static const int localbase_oid[2] = {CTL_USER, USER_LOCALBASE}; There is no use for this to be static. Why not? This makes it part of the constant initialized data of the library, which is more efficient under run-time and memory space

Re: svn commit: r367813 - head/lib/libutil

2020-11-18 Thread Stefan Esser
Am 18.11.20 um 22:27 schrieb Jessica Clarke: On 18 Nov 2020, at 21:15, Jessica Clarke wrote: On 18 Nov 2020, at 19:44, Stefan Eßer wrote: + /* +* Check for some other thread already having +* set localbase - this should use atomic ops. +

Re: svn commit: r367813 - head/lib/libutil

2020-11-18 Thread Stefan Esser
Am 18.11.20 um 22:15 schrieb Jessica Clarke: On 18 Nov 2020, at 19:44, Stefan Eßer wrote: + /* +* Check for some other thread already having +* set localbase - this should use atomic ops. +* The amount of memory allocated above

Re: svn commit: r367280 - head/lib/libc/gen

2020-11-05 Thread Stefan Esser
Am 04.11.20 um 20:49 schrieb Konstantin Belousov: On Mon, Nov 02, 2020 at 11:51:12PM +0100, Stefan Esser wrote: Am 02.11.20 um 23:10 schrieb Konstantin Belousov: On Mon, Nov 02, 2020 at 10:49:07PM +0100, Emmanuel Vadot wrote: I think that the first question we want to ask is : Do we want

Re: svn commit: r367280 - head/lib/libc/gen

2020-11-05 Thread Stefan Esser
Am 04.11.20 um 20:40 schrieb Baptiste Daroussin: On Wed, Nov 04, 2020 at 11:04:37AM -0800, Rodney W. Grimes wrote: For 25 years PREFIX has been rigidly a part of the ports infustructure, why is it that the BASE system has been allowed to de-evolve from this concept as documented and REQUIRED

Re: svn commit: r367280 - head/lib/libc/gen

2020-11-03 Thread Stefan Esser
I think that the first question we want to ask is : Do we want to support LOCALBASE being different than /usr/local The big majority of users will keep the default value, and I do not see a good reason for a change, except if there is a large installed base that traditionally uses another

Re: svn commit: r367280 - head/lib/libc/gen

2020-11-02 Thread Stefan Esser
Am 02.11.20 um 23:10 schrieb Konstantin Belousov: On Mon, Nov 02, 2020 at 10:49:07PM +0100, Emmanuel Vadot wrote: I think that the first question we want to ask is : Do we want to support LOCALBASE being different than /usr/local I honestly don't see any advantages of making it

Re: svn commit: r367280 - head/lib/libc/gen

2020-11-02 Thread Stefan Esser
Am 02.11.20 um 22:49 schrieb Emmanuel Vadot: On Mon, 2 Nov 2020 22:41:38 +0100 Stefan Esser wrote: Am 02.11.20 um 20:20 schrieb Oliver Pinter:> On Monday, November 2, 2020, Stefan Eßer <mailto:s...@freebsd.org>> wrote: Author: se Date: Mon Nov  2 18:48:06 2020

Re: svn commit: r367280 - head/lib/libc/gen

2020-11-02 Thread Stefan Esser
Am 02.11.20 um 20:20 schrieb Oliver Pinter:> On Monday, November 2, 2020, Stefan Eßer > wrote: Author: se Date: Mon Nov  2 18:48:06 2020 New Revision: 367280 URL: https://svnweb.freebsd.org/changeset/base/367280

Re: svn commit: r367221 - head

2020-11-01 Thread Stefan Esser
Am 01.11.20 um 18:16 schrieb Dan Mack: Are lines 29 and 36 in /usr/src/UPDATING supposed to be 2020 or is the 2010 correct ? Fixed in SVN rev. r367254 Thanks for spotting this error! Regards, STefan OpenPGP_signature Description: OpenPGP digital signature

Re: svn commit: r367196 - head/lib/libc/gen

2020-10-31 Thread Stefan Esser
Sorry for the bad bug that I introduced with this attempted style fix! The correct code has been committed as r367199. Am 31.10.20 um 12:46 schrieb xto...@hotmail.com: Stefan Eßer wrote: Author: se Date: Sat Oct 31 11:44:10 2020 New Revision: 367196 URL:

Re: svn commit: r367103 - head/usr.bin/calendar

2020-10-28 Thread Stefan Esser
Am 28.10.20 um 14:34 schrieb Kyle Evans: On Wed, Oct 28, 2020 at 8:24 AM Stefan Esser wrote: I'm thinking about support for nested conditionals and #else in calendar files, but I'm not sure about the possibility to MFC such a change and I do not want to invite users to create calendar files

Re: svn commit: r367103 - head/usr.bin/calendar

2020-10-28 Thread Stefan Esser
Am 28.10.20 um 14:12 schrieb Kyle Evans:>> Modified: head/usr.bin/calendar/io.c == --- head/usr.bin/calendar/io.c Wed Oct 28 11:54:09 2020(r367102) +++ head/usr.bin/calendar/io.c Wed Oct 28 13:06:39 2020

Re: svn commit: r366962 - in head: include usr.bin/calendar

2020-10-27 Thread Stefan Esser
Am 27.10.20 um 08:37 schrieb Alex Kozlov: On Mon, Oct 26, 2020 at 12:11:56AM -0600, Warner Losh wrote: So, first off, it's already hard coded. Stefan's changes change the hard coding from 'impossible to change' to 'changeable with a recompile' which is an improvement. It might even wind up as a

Re: svn commit: r366962 - in head: include usr.bin/calendar

2020-10-26 Thread Stefan Esser
Am 26.10.20 um 09:08 schrieb Baptiste Daroussin: On Mon, Oct 26, 2020 at 02:05:28AM -0600, Scott Long wrote: On Oct 26, 2020, at 1:50 AM, Baptiste Daroussin wrote: On Mon, Oct 26, 2020 at 12:11:56AM -0600, Warner Losh wrote: [...] So, first off, it's already hard coded. Stefan's changes

Re: svn commit: r366962 - in head: include usr.bin/calendar

2020-10-26 Thread Stefan Esser
Am 26.10.20 um 00:55 schrieb Rodney W. Grimes: [ Charset ISO-8859-1 unsupported, converting... ] On Sat, Oct 24, 2020 at 04:37:45PM +0200, Stefan Esser wrote: Am 24.10.20 um 09:48 schrieb Alex Kozlov: On Fri, Oct 23, 2020 at 09:22:23AM +, Stefan E?er wrote: Author: se Date: Fri Oct 23 09

Re: svn commit: r366962 - in head: include usr.bin/calendar

2020-10-25 Thread Stefan Esser
Am 25.10.20 um 06:56 schrieb Alex Kozlov: On Sat, Oct 24, 2020 at 04:37:45PM +0200, Stefan Esser wrote: Am 24.10.20 um 09:48 schrieb Alex Kozlov: [...] You are hardcoding assumption that LOCALBASE = /usr/local. Please make it overridable with LOCALBASE environment variable

Re: svn commit: r366962 - in head: include usr.bin/calendar

2020-10-25 Thread Stefan Esser
Am 25.10.20 um 04:46 schrieb Rodney W. Grimes: On Sat, Oct 24, 2020 at 8:51 PM Rodney W. Grimes wrote: +#define _PATH_LOCALBASE "/usr/local" + Something feels very wrong about this becoming a defined path in base, it is further dependence on /usr/local which in the early days we spent

Re: svn commit: r366962 - in head: include usr.bin/calendar

2020-10-24 Thread Stefan Esser
Am 24.10.20 um 09:48 schrieb Alex Kozlov: On Fri, Oct 23, 2020 at 09:22:23AM +, Stefan Eßer wrote: Author: se Date: Fri Oct 23 09:22:23 2020 New Revision: 366962 URL: https://svnweb.freebsd.org/changeset/base/366962 Log: Add search of LOCALBASE/share/calendar for calendars supplied by a

Re: svn commit: r365643 - head/bin/cp

2020-09-24 Thread Stefan Esser
Am 24.09.20 um 08:54 schrieb Warner Losh: On Thu, Sep 24, 2020 at 12:41 AM Stefan Esser <mailto:s...@freebsd.org>> wrote: Am 23.09.20 um 19:23 schrieb Warner Losh> But for this issue, we're not mounting devfs early enough.  We should > fix that. Removing /dev/nul

Re: svn commit: r365643 - head/bin/cp

2020-09-24 Thread Stefan Esser
Am 23.09.20 um 19:23 schrieb Warner Losh> But for this issue, we're not mounting devfs early enough.  We should fix that. Removing /dev/null from the boot process likely is never going to happen because we use it all over the place to discard output... There's ~200 instances of it in the boot

Re: svn commit: r364321 - head/sbin/ipfw

2020-08-31 Thread Stefan Esser
Am 31.08.20 um 16:09 schrieb Rodney W. Grimes: Hrm, it seems this reply ended up in my spam folder; sorry for not replying until now. lol Oh, bad filter :-) *strchr(timestr, '\n') = '\0'; bprintf(bp, "%s ", timestr);

svn commit: r355591 - head/share/vt/keymaps

2019-12-10 Thread Stefan Esser
Author: se Date: Tue Dec 10 19:52:29 2019 New Revision: 355591 URL: https://svnweb.freebsd.org/changeset/base/355591 Log: Replace two remaining hex values for control codes with their names. These were the only values in the range from 0 to 0x1f that were defined as hex values, all other

svn commit: r355382 - head/sys/dev/pci

2019-12-04 Thread Stefan Esser
: head/sys/dev/pci/hostb_pci.c == --- head/sys/dev/pci/hostb_pci.cWed Dec 4 04:01:53 2019 (r355381) +++ head/sys/dev/pci/hostb_pci.cWed Dec 4 08:03:33 2019 (r355382) @@ -1,8 +1,7 @@ /*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * - * Copyright (

svn commit: r344127 - stable/11/lib/libfigpar

2019-02-14 Thread Stefan Esser
Author: se Date: Thu Feb 14 15:42:29 2019 New Revision: 344127 URL: https://svnweb.freebsd.org/changeset/base/344127 Log: MFC r343480,343482: Silence Clang Scan warning about unsafe use of strcpy. Replace strcpy() by memcpy to the previously allocated range of known size. Modified:

svn commit: r344126 - stable/11/libexec/getty

2019-02-14 Thread Stefan Esser
Author: se Date: Thu Feb 14 15:41:05 2019 New Revision: 344126 URL: https://svnweb.freebsd.org/changeset/base/344126 Log: MFC r343479: Fix potential buffer overflow and undefined behavior. The buffer allocated in read_chat() could be 1 element too short, if the chatstr parameter passed

svn commit: r344125 - stable/11/usr.bin/whereis

2019-02-14 Thread Stefan Esser
Author: se Date: Thu Feb 14 15:39:17 2019 New Revision: 344125 URL: https://svnweb.freebsd.org/changeset/base/344125 Log: MFC r343408: Silence Clang Scan warnings regarding unsafe use of strcp(). While these warnings are false positives, the use of strdup() instead of malloc() and

svn commit: r344124 - stable/11/usr.sbin/kbdcontrol

2019-02-14 Thread Stefan Esser
Author: se Date: Thu Feb 14 15:33:04 2019 New Revision: 344124 URL: https://svnweb.freebsd.org/changeset/base/344124 Log: MFC r343339: Silence Clang Scan warning about use of unitialized variable. The logic is changed to depend on actual "beep" parameters instead of on a flag that may be

svn commit: r343941 - stable/12/lib/libfigpar

2019-02-09 Thread Stefan Esser
Author: se Date: Sat Feb 9 14:44:17 2019 New Revision: 343941 URL: https://svnweb.freebsd.org/changeset/base/343941 Log: MFC r343480,343482: Silence Clang Scan warning about unsafe use of strcpy. Replace strcpy() by memcpy to the previously allocated range of known size. Modified:

svn commit: r343940 - in stable/12/usr.sbin/timed: timed timedc

2019-02-09 Thread Stefan Esser
Author: se Date: Sat Feb 9 14:33:43 2019 New Revision: 343940 URL: https://svnweb.freebsd.org/changeset/base/343940 Log: Add notes regarding the deprecation and removal of timed and timedc in -CURRENT to binaries and man-pages. This is a direct commit to -STABLE, since the removal from

svn commit: r343939 - stable/12/libexec/getty

2019-02-09 Thread Stefan Esser
Author: se Date: Sat Feb 9 14:21:29 2019 New Revision: 343939 URL: https://svnweb.freebsd.org/changeset/base/343939 Log: MFC r343479: Fix potential buffer overflow and undefined behavior. The buffer allocated in read_chat() could be 1 element too short, if the chatstr parameter passed

svn commit: r343938 - stable/12/usr.bin/whereis

2019-02-09 Thread Stefan Esser
Author: se Date: Sat Feb 9 14:19:09 2019 New Revision: 343938 URL: https://svnweb.freebsd.org/changeset/base/343938 Log: MFC r343408: Silence Clang Scan warnings regarding unsafe use of strcp(). While these warnings are false positives, the use of strdup() instead of malloc() and

svn commit: r343937 - stable/12/usr.sbin/kbdcontrol

2019-02-09 Thread Stefan Esser
Author: se Date: Sat Feb 9 14:13:49 2019 New Revision: 343937 URL: https://svnweb.freebsd.org/changeset/base/343937 Log: MFC r343339: Silence Clang Scan warning about use of unitialized variable. The logic is changed to depend on actual "beep" parameters instead of on a flag that may be

svn commit: r343936 - stable/12/usr.sbin/kbdmap

2019-02-09 Thread Stefan Esser
Author: se Date: Sat Feb 9 14:07:04 2019 New Revision: 343936 URL: https://svnweb.freebsd.org/changeset/base/343936 Log: MFC r343303: Silence a CI warning regarding the use of strcpy(). While this is a false positive (a sufficiently large buffer has been allocated in the line above),

Re: svn commit: r343480 - head/lib/libfigpar

2019-01-26 Thread Stefan Esser
Am 26.01.19 um 22:59 schrieb Colin Percival: > On 1/26/19 1:36 PM, Rodney W. Grimes wrote: >>> Author: se >>> Date: Sat Jan 26 21:30:26 2019 >>> New Revision: 343480 >>> URL: https://svnweb.freebsd.org/changeset/base/343480 >>> >>> Log: >>> Silence Clang Scan warning about potentially unsafe use

svn commit: r343482 - head/lib/libfigpar

2019-01-26 Thread Stefan Esser
Author: se Date: Sat Jan 26 22:24:15 2019 New Revision: 343482 URL: https://svnweb.freebsd.org/changeset/base/343482 Log: Slightly improve previous commit that silenced a Clang Scan warning. The strdup() call does not take advantage of the known length of the source string. Replace by

svn commit: r343480 - head/lib/libfigpar

2019-01-26 Thread Stefan Esser
Author: se Date: Sat Jan 26 21:30:26 2019 New Revision: 343480 URL: https://svnweb.freebsd.org/changeset/base/343480 Log: Silence Clang Scan warning about potentially unsafe use of strcpy. While this is a false positive, the use of strdup() simplifies the code. MFC after:2 weeks

svn commit: r343479 - head/libexec/getty

2019-01-26 Thread Stefan Esser
Author: se Date: Sat Jan 26 20:43:28 2019 New Revision: 343479 URL: https://svnweb.freebsd.org/changeset/base/343479 Log: Fix potential buffer overflow and undefined behavior. The buffer allocated in read_chat() could be 1 element too short, if the chatstr parameter passed in is 1 or 3

svn commit: r343408 - head/usr.bin/whereis

2019-01-24 Thread Stefan Esser
Author: se Date: Thu Jan 24 18:39:45 2019 New Revision: 343408 URL: https://svnweb.freebsd.org/changeset/base/343408 Log: Silence Clang Scan warnings regarding the use of strcp(). While these warnings are false positives, the use of strdup() instead of malloc() and strcpy() simplifies

svn commit: r343339 - head/usr.sbin/kbdcontrol

2019-01-23 Thread Stefan Esser
Author: se Date: Wed Jan 23 10:05:27 2019 New Revision: 343339 URL: https://svnweb.freebsd.org/changeset/base/343339 Log: Silence Clang Scan warning about use of unitialized variable. While the warning is a false positive, it is possible to clarify the code by always initializing the

svn commit: r343303 - head/usr.sbin/kbdmap

2019-01-22 Thread Stefan Esser
Author: se Date: Tue Jan 22 13:11:15 2019 New Revision: 343303 URL: https://svnweb.freebsd.org/changeset/base/343303 Log: Silence a CI warning regarding the use of strcpy(). While this is a false positive (a sufficiently large buffer has been allocated in the line above), the use of

svn commit: r342162 - head

2018-12-17 Thread Stefan Esser
Author: se Date: Mon Dec 17 10:17:56 2018 New Revision: 342162 URL: https://svnweb.freebsd.org/changeset/base/342162 Log: Add removed CTM files to ObsoleteFiles.inc as a follow-up to r342126. Modified: head/ObsoleteFiles.inc Modified: head/ObsoleteFiles.inc

svn commit: r342126 - in head: share/man/man5 tools/build/mk tools/build/options usr.sbin usr.sbin/ctm

2018-12-15 Thread Stefan Esser
Author: se Date: Sat Dec 15 16:53:15 2018 New Revision: 342126 URL: https://svnweb.freebsd.org/changeset/base/342126 Log: Remove CTM from 13-CURRENT after the release of FreeBSD-12.0. The removal (and creation of a port) has been pre-announced in UPDATING 1 month ago. Packages are

Re: svn commit: r341759 - in head: contrib/wpa contrib/wpa/hostapd contrib/wpa/hs20/client contrib/wpa/src/ap contrib/wpa/src/common contrib/wpa/src/crypto contrib/wpa/src/drivers contrib/wpa/src/eap_

2018-12-10 Thread Stefan Esser
Am 10.12.18 um 07:47 schrieb Warner Losh: > > > On Sun, Dec 9, 2018, 11:40 PM Cy Schubert wrote: > > In message <201812100619.wba6jb0c064...@pdx.rh.cn85.dnsmgr.net > >, > "Rodney W. Gri >

svn commit: r340444 - in stable/12: . usr.sbin/ctm/ctm

2018-11-14 Thread Stefan Esser
Author: se Date: Wed Nov 14 20:35:04 2018 New Revision: 340444 URL: https://svnweb.freebsd.org/changeset/base/340444 Log: MFC S340428: Prepare move of ctm from base to a port (misc/ctm) by: - Adding a note to UPDATING - Adding a note to the history section of the manpage ctm.1 - Adding a

svn commit: r340428 - in head: . usr.sbin/ctm/ctm

2018-11-14 Thread Stefan Esser
Author: se Date: Wed Nov 14 08:45:48 2018 New Revision: 340428 URL: https://svnweb.freebsd.org/changeset/base/340428 Log: Prepare move of ctm from base to a port (misc/ctm) by: - Adding a note to UPDATING - Adding a note to the history section of the manpage ctm.1 - Adding a message

Re: svn commit: r334617 - in head: . etc

2018-06-06 Thread Stefan Esser
Am 05.06.18 um 22:43 schrieb Brad Davis: > > On Tue, Jun 5, 2018, at 1:07 PM, Renato Botelho wrote: >> On 05/06/18 15:26, Konstantin Belousov wrote: >> > On Tue, Jun 05, 2018 at 12:13:05PM -0600, Brad Davis wrote: >> >> On Tue, Jun 5, 2018, at 10:46 AM, Konstantin Belousov wrote: >> >>> I find it

Re: svn commit: r333388 - in head: . share/man/man4 sys/conf sys/dev/nxge sys/modules sys/modules/nxge tools/kerneldoc/subsys tools/tools tools/tools/nxge usr.sbin/bsdconfig/share

2018-05-23 Thread Stefan Esser
Am 23.05.18 um 20:14 schrieb Rodney W. Grimes: >> On Wed, May 23, 2018 at 10:41:17AM -0700, Gleb Smirnoff wrote: >>> If end of sales and support is enough to remove 10g driver from the kernel, >>> can we please delete all 10Mbit, 100Mbit 10+ year old drivers from the >>> kernel? >> >> Depends on

Re: svn commit: r333995 - head/sys/teken

2018-05-22 Thread Stefan Esser
Am 22.05.18 um 03:18 schrieb Bruce Evans: > On Mon, 21 May 2018, [UTF-8] Jean-Sébastien Pédron wrote: >> -CS    Cursor style    ^[ [ SP q    r >> +DECSCUSR    Set Cursor Style    ^[ [ SP q    r >> DA1    Primary Device Attributes    ^[ [ c    r >> DA2    Secondary Device

Re: svn commit: r333919 - in head/contrib/file: . doc magic magic/Magdir python src tests

2018-05-20 Thread Stefan Esser
Am 20.05.18 um 22:30 schrieb Antoine Brodin: > On Sun, May 20, 2018 at 7:06 AM, Eitan Adler wrote: >> Author: eadler >> Date: Sun May 20 05:06:42 2018 >> New Revision: 333919 >> URL: https://svnweb.freebsd.org/changeset/base/333919 >> >> Log: >> MFV: file 5.33 >> >> Merge

Re: svn commit: r327086 - head/sys/dev/lmc

2018-01-04 Thread Stefan Esser
Am 04.01.18 um 00:41 schrieb Pedro Giffuni: > Either the license is very naively stated or the device should have been added > in the contrib/gnu branches. This appears to be one of the dual-licensed drivers, that are the result of some BSD driver having been ported to Linux with the original

Re: svn commit: r325954 - in head: . share/mk sys/conf usr.sbin/config

2017-11-18 Thread Stefan Esser
Am 18.11.17 um 16:01 schrieb Pedro Giffuni: > Hi; > > On 11/18/17 09:15, Stefan Esser wrote: >> Am 18.11.17 um 03:31 schrieb Pedro Giffuni: >>>> On Nov 17, 2017, at 20:34, Rodney W. Grimes >>>> <free...@pdx.rh.cn85.dnsmgr.net> wrote: >

Re: svn commit: r325954 - in head: . share/mk sys/conf usr.sbin/config

2017-11-18 Thread Stefan Esser
Am 18.11.17 um 03:31 schrieb Pedro Giffuni: > >> On Nov 17, 2017, at 20:34, Rodney W. Grimes >> wrote: >> >> [ Charset UTF-8 unsupported, converting... ] >>> Kib@ posted to arch that we were removing it, nobody objected, we removed >>> it. If it was a working

svn commit: r325053 - in stable/10/share/man: man5 man8

2017-10-28 Thread Stefan Esser
Author: se Date: Sat Oct 28 07:06:57 2017 New Revision: 325053 URL: https://svnweb.freebsd.org/changeset/base/325053 Log: MFC 324721: Add references to sysrc(8) to SEE ALSO. MFC 324823: Mention sysrc(8) as scripting interface for config files. Modified: stable/10/share/man/man5/rc.conf.5

svn commit: r325052 - in stable/11/share/man: man5 man8

2017-10-28 Thread Stefan Esser
Author: se Date: Sat Oct 28 07:06:30 2017 New Revision: 325052 URL: https://svnweb.freebsd.org/changeset/base/325052 Log: MFC 324721: Add references to sysrc(8) to SEE ALSO. MFC 324823: Mention sysrc(8) as scripting interface for config files. Modified: stable/11/share/man/man5/rc.conf.5

svn commit: r324823 - in head/share/man: man5 man8

2017-10-21 Thread Stefan Esser
Author: se Date: Sat Oct 21 16:55:52 2017 New Revision: 324823 URL: https://svnweb.freebsd.org/changeset/base/324823 Log: Mention sysrc(8) as scripting interface for the modification of config files. This is a follow up commit to r324721, which added sysrc(8) to the SEE ALSO list.

svn commit: r324721 - in head/share/man: man5 man8

2017-10-18 Thread Stefan Esser
Author: se Date: Wed Oct 18 13:25:44 2017 New Revision: 324721 URL: https://svnweb.freebsd.org/changeset/base/324721 Log: Add references to sysrc(8). Reported by: Kurt Jaeger (lists at opsec.eu) Modified: head/share/man/man5/rc.conf.5 head/share/man/man8/rc.8 Modified:

Re: svn commit: r324620 - head/sys/fs/fuse

2017-10-14 Thread Stefan Esser
Am 14.10.17 um 21:02 schrieb Fedor Uporov: > Author: fsu > Date: Sat Oct 14 19:02:52 2017 > New Revision: 324620 > URL: https://svnweb.freebsd.org/changeset/base/324620 > > Log: > Add extended attributes support to fuse kernel module. > > Author: kem > Reviewed by:cem, pfg

svn commit: r322225 - stable/10/share/vt/keymaps

2017-08-08 Thread Stefan Esser
Author: se Date: Tue Aug 8 10:45:22 2017 New Revision: 35 URL: https://svnweb.freebsd.org/changeset/base/35 Log: MFC 321858: Add alternate Turkish keyboard layout F, submitted by Ufur Guler. MFC 321859: While here, adjust a few file and path names in comments. Added:

svn commit: r322224 - stable/11/share/vt/keymaps

2017-08-08 Thread Stefan Esser
Author: se Date: Tue Aug 8 10:45:13 2017 New Revision: 34 URL: https://svnweb.freebsd.org/changeset/base/34 Log: MFC 321858: Add alternate Turkish keyboard layout F, submitted by Ufur Guler. MFC 321859: While here, adjust a few file and path names in comments. Added:

svn commit: r321859 - head/share/vt/keymaps

2017-08-01 Thread Stefan Esser
Author: se Date: Tue Aug 1 09:34:15 2017 New Revision: 321859 URL: https://svnweb.freebsd.org/changeset/base/321859 Log: Adjust path to X11 locale files (/usr/X11 has been changed to /usr/local a long ago) in comment. No functional change. Modified: head/share/vt/keymaps/INDEX.keymaps

svn commit: r321858 - head/share/vt/keymaps

2017-08-01 Thread Stefan Esser
Author: se Date: Tue Aug 1 09:30:21 2017 New Revision: 321858 URL: https://svnweb.freebsd.org/changeset/base/321858 Log: Add alternate Turkish keyboard layout F. The layout and menu texts have been provided by Ufuk Güler, with minor changes for consistency by me. Submitted by: Ufuk

Re: svn commit: r301944 - head/share/zoneinfo

2016-06-16 Thread Stefan Esser
Am 16.06.2016 um 05:00 schrieb Glen Barber: > Author: gjb > Date: Thu Jun 16 03:00:10 2016 > New Revision: 301944 > URL: https://svnweb.freebsd.org/changeset/base/301944 > > Log: > Fix zoneinfo file packaging. > > This change fixes 468 of 488 zoneinfo file packaging issues, > the rest

svn commit: r298539 - head/etc/rc.d

2016-04-24 Thread Stefan Esser
Author: se Date: Sun Apr 24 12:07:44 2016 New Revision: 298539 URL: https://svnweb.freebsd.org/changeset/base/298539 Log: Fix typo (forgotten "=" after desc). Modified: head/etc/rc.d/ccd Modified: head/etc/rc.d/ccd

Re: svn commit: r295800 - head/usr.bin/cap_mkdb

2016-02-20 Thread Stefan Esser
Am 20.02.2016 um 03:31 schrieb Eric van Gyzen: > On 2/19/16 6:40 PM, Bryan Drewery wrote: >> On 2/19/2016 12:42 AM, Stefan Esser wrote: >>> Author: se >>> Date: Fri Feb 19 08:42:13 2016 >>> New Revision: 295800 >>> URL: https://svnweb.freebsd.org/cha

svn commit: r295816 - head/sys/dev/pci

2016-02-19 Thread Stefan Esser
Author: se Date: Fri Feb 19 16:53:21 2016 New Revision: 295816 URL: https://svnweb.freebsd.org/changeset/base/295816 Log: Fix syntax error introduced in previous commit where I removed one character to few. I should have waited for the kernel compile to finish, even though the change seemed

svn commit: r295813 - head/sys/dev/pci

2016-02-19 Thread Stefan Esser
Author: se Date: Fri Feb 19 16:43:03 2016 New Revision: 295813 URL: https://svnweb.freebsd.org/changeset/base/295813 Log: Remove redundant check for "(dinfo != NULL)", it has already been performed as the first part of this complex loop conditional. Found by:PVS Static Analysis

svn commit: r295806 - head/usr.sbin/pciconf

2016-02-19 Thread Stefan Esser
Author: se Date: Fri Feb 19 14:01:35 2016 New Revision: 295806 URL: https://svnweb.freebsd.org/changeset/base/295806 Log: Fix possible out-of-bounds access detected by Ulrich Spörleins "scan-build". Some invalid PCI device selectors could cause read access to an initialized variable next to

svn commit: r295800 - head/usr.bin/cap_mkdb

2016-02-19 Thread Stefan Esser
Author: se Date: Fri Feb 19 08:42:13 2016 New Revision: 295800 URL: https://svnweb.freebsd.org/changeset/base/295800 Log: Remove O_SYNC from the options passed to dbmopen(). The output file is created as a temporary file that is moved over the existing file after completion. Thus there

svn commit: r295769 - head/usr.sbin/pciconf

2016-02-18 Thread Stefan Esser
Author: se Date: Thu Feb 18 20:20:36 2016 New Revision: 295769 URL: https://svnweb.freebsd.org/changeset/base/295769 Log: Use __unused instead of casting to void to silence the unused parameter warning. Fix the indentation of 2 lines to conform with the style of this file. Submitted

Re: svn commit: r295760 - head/usr.sbin/pciconf

2016-02-18 Thread Stefan Esser
Am 18.02.2016 um 19:07 schrieb John Baldwin: > On Thursday, February 18, 2016 03:23:26 PM Stefan Esser wrote: >> Author: se >> Date: Thu Feb 18 15:23:25 2016 >> New Revision: 295760 >> URL: https://svnweb.freebsd.org/changeset/base/295760 >> >> Log: &g

svn commit: r295760 - head/usr.sbin/pciconf

2016-02-18 Thread Stefan Esser
Author: se Date: Thu Feb 18 15:23:25 2016 New Revision: 295760 URL: https://svnweb.freebsd.org/changeset/base/295760 Log: Make WARNS=6 safe. Tested with Clang 3.7.1, GCC 4.2.1 and GCC 4.8.5 on amd64. Modified: head/usr.sbin/pciconf/Makefile head/usr.sbin/pciconf/cap.c

Re: svn commit: r295465 - head/usr.sbin/services_mkdb

2016-02-11 Thread Stefan Esser
Am 11.02.2016 um 10:15 schrieb David Malone: > On Wed, Feb 10, 2016 at 09:40:45AM +0000, Stefan Esser wrote: >> Author: se >> Date: Wed Feb 10 09:40:45 2016 >> New Revision: 295465 >> URL: https://svnweb.freebsd.org/changeset/base/295465 >> >> Log: >

svn commit: r295465 - head/usr.sbin/services_mkdb

2016-02-10 Thread Stefan Esser
Author: se Date: Wed Feb 10 09:40:45 2016 New Revision: 295465 URL: https://svnweb.freebsd.org/changeset/base/295465 Log: Remove O_SYNC from the options passed to dbmopen(). The services db is created as a temporary file that is moved over the existing file after completion. Thus there

Re: svn commit: r294329 - in head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2016-01-19 Thread Stefan Esser
Am 19.01.2016 um 18:08 schrieb Kurt Lidl: > Removing the ability to run different zpools on top of a zvol is > a significant reduction in functionality of the entire system, and a > huge violation of the POLA. > > At the very least, can you not add a sysctl that allows the > dangerous behavior

svn commit: r277798 - head/bin/expr

2015-01-27 Thread Stefan Esser
Author: se Date: Tue Jan 27 18:04:41 2015 New Revision: 277798 URL: https://svnweb.freebsd.org/changeset/base/277798 Log: Fix overflow check for multiplication: - Add special test to detect the case of -1 * INTMAX_MIN - Protect against elimination of the test division by the optimizer

svn commit: r272112 - stable/10/etc/rc.d

2014-09-25 Thread Stefan Esser
Author: se Date: Thu Sep 25 16:35:19 2014 New Revision: 272112 URL: http://svnweb.freebsd.org/changeset/base/272112 Log: MFC r271958: Permit use of no as specification of a Norwegian keymap file. Only keymap=NO (the default in defaults/rc.conf) or keymap= (an empty value) will prevent

svn commit: r271958 - head/etc/rc.d

2014-09-22 Thread Stefan Esser
Author: se Date: Mon Sep 22 11:54:13 2014 New Revision: 271958 URL: http://svnweb.freebsd.org/changeset/base/271958 Log: The new naming scheme for keymap files for use with vt(4) introduced a collision for no as a country code with NO meaning do not load any keymap (which also has been the

svn commit: r271646 - stable/10/share/vt/keymaps

2014-09-15 Thread Stefan Esser
Author: se Date: Mon Sep 15 20:08:07 2014 New Revision: 271646 URL: http://svnweb.freebsd.org/changeset/base/271646 Log: MFC r271452: Add two forgotten keymap names (fr.kbd and fr.acc.kbd) to the list of files to be installed. Approved by: re Modified:

svn commit: r271452 - head/share/vt/keymaps

2014-09-12 Thread Stefan Esser
Author: se Date: Fri Sep 12 06:23:57 2014 New Revision: 271452 URL: http://svnweb.freebsd.org/changeset/base/271452 Log: Add forgotten keymap files fr.kbd and fr.acc.kbd to the FILES list. Obtained from:thierry MFC after:3 days Modified: head/share/vt/keymaps/Makefile

svn commit: r271095 - in stable/10: etc/defaults etc/rc.d sbin/conscontrol share/man/man4 share/man/man5 share/man/man7 share/man/man8 tools/tools/vt/keymaps usr.bin/lock usr.sbin/bsdconfig usr.sbi...

2014-09-04 Thread Stefan Esser
Author: se Date: Thu Sep 4 13:45:16 2014 New Revision: 271095 URL: http://svnweb.freebsd.org/changeset/base/271095 Log: MFC r270647: Add references to vt(4) and the configuration files in /usr/sha MFC r270653: Update man-pages to correctly refer to changed pathes and namin MFC r270657:

svn commit: r271096 - stable/10/usr.sbin/smbmsg

2014-09-04 Thread Stefan Esser
Author: se Date: Thu Sep 4 13:47:55 2014 New Revision: 271096 URL: http://svnweb.freebsd.org/changeset/base/271096 Log: MFC r270931: Fix typo (by - be). Modified: stable/10/usr.sbin/smbmsg/smbmsg.8 Directory Properties: stable/10/ (props changed) Modified:

svn commit: r271108 - head/tools/tools/vt/keymaps

2014-09-04 Thread Stefan Esser
Author: se Date: Thu Sep 4 17:19:16 2014 New Revision: 271108 URL: http://svnweb.freebsd.org/changeset/base/271108 Log: Fix debug output that has erroneously been committed with the last update. Obtained from:Jan Beich MFC after:3 days Modified:

svn commit: r271109 - stable/10/tools/tools/vt/keymaps

2014-09-04 Thread Stefan Esser
Author: se Date: Thu Sep 4 17:21:54 2014 New Revision: 271109 URL: http://svnweb.freebsd.org/changeset/base/271109 Log: Fix debug output that has erroneously been committed with the last update. Obtained from:Jan Beich Modified:

Re: svn commit: r270232 - head/tools/tools/vt/keymaps

2014-09-04 Thread Stefan Esser
Am 04.09.2014 um 16:52 schrieb Jan Beich: Stefan Esser s...@freebsd.org writes: Author: se Date: Wed Aug 20 17:07:41 2014 New Revision: 270232 URL: http://svnweb.freebsd.org/changeset/base/270232 Log: The conversion tools have been further improved and some erroneous conversions

svn commit: r270931 - head/usr.sbin/smbmsg

2014-09-01 Thread Stefan Esser
Author: se Date: Mon Sep 1 16:12:29 2014 New Revision: 270931 URL: http://svnweb.freebsd.org/changeset/base/270931 Log: Fix typo (by - be). MFC after:3 days Modified: head/usr.sbin/smbmsg/smbmsg.8 Modified: head/usr.sbin/smbmsg/smbmsg.8

svn commit: r270933 - in head: sbin/conscontrol usr.sbin/vidcontrol

2014-09-01 Thread Stefan Esser
Author: se Date: Mon Sep 1 16:25:08 2014 New Revision: 270933 URL: http://svnweb.freebsd.org/changeset/base/270933 Log: Add references to vt(4) to further man-pages. MFC after:3 days Modified: head/sbin/conscontrol/conscontrol.8 head/usr.sbin/vidcontrol/vidcontrol.1 Modified:

svn commit: r270934 - head/tools/tools/vt/keymaps

2014-09-01 Thread Stefan Esser
Author: se Date: Mon Sep 1 16:26:57 2014 New Revision: 270934 URL: http://svnweb.freebsd.org/changeset/base/270934 Log: Final patches to the tools used to convert syscons keymaps for use with vt. MFC after:3 days Modified: head/tools/tools/vt/keymaps/KBDFILES.map

svn commit: r270935 - head/etc/rc.d

2014-09-01 Thread Stefan Esser
Author: se Date: Mon Sep 1 16:51:57 2014 New Revision: 270935 URL: http://svnweb.freebsd.org/changeset/base/270935 Log: Add vt(4) support to the console initialisation script, specifically: - Identify the console driver used and print syscons or vt as appropriate. - If vt is used and

  1   2   >