svn commit: r349164 - in head: sys/dev/pwm usr.sbin/pwm

2019-06-17 Thread Ian Lepore
Author: ian Date: Tue Jun 18 00:11:00 2019 New Revision: 349164 URL: https://svnweb.freebsd.org/changeset/base/349164 Log: Remove everything related to channels from the pwmc public interface, now that there is a pwmc(4) instance per channel and the channel number is maintained as a driver i

svn commit: r349165 - head/usr.sbin/pwm

2019-06-17 Thread Ian Lepore
Author: ian Date: Tue Jun 18 00:17:10 2019 New Revision: 349165 URL: https://svnweb.freebsd.org/changeset/base/349165 Log: Explain the relationship between PWM hardware channels being controlled and pwmc(4) device filenames. Also, use uppercase PWM when the term is being used as an acronym,

svn commit: r349166 - head/usr.sbin/pwm

2019-06-17 Thread Ian Lepore
Author: ian Date: Tue Jun 18 01:15:00 2019 New Revision: 349166 URL: https://svnweb.freebsd.org/changeset/base/349166 Log: Rearrange the argument checking and processing so that enable and disable can be combined with configuring the period and duty cycle (the same ioctl sets all 3 values at

svn commit: r349167 - head/usr.sbin/pwm

2019-06-17 Thread Ian Lepore
Author: ian Date: Tue Jun 18 02:27:30 2019 New Revision: 349167 URL: https://svnweb.freebsd.org/changeset/base/349167 Log: Oops, it seems I left out the word 'cycle', fix it. Reported by: rpokala@ Modified: head/usr.sbin/pwm/pwm.8 Modified: head/usr.sbin/pwm/pwm.8 =

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

2019-06-17 Thread Ian Lepore
) +++ head/share/man/man4/pwmc.4 Tue Jun 18 04:32:19 2019(r349168) @@ -0,0 +1,212 @@ +.\" +.\" Copyright (c) 2019 Ian Lepore +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the followin

svn commit: r349174 - head/sys/dev/pwm

2019-06-18 Thread Ian Lepore
Author: ian Date: Tue Jun 18 17:05:05 2019 New Revision: 349174 URL: https://svnweb.freebsd.org/changeset/base/349174 Log: Handle labels specified with hints even on FDT systems. Hints are the easiest thing for a user to control (via loader.conf or kenv+kldload), so handle them in addition

Re: svn commit: r349233 - head/sys/sys

2019-06-20 Thread Ian Lepore
On Thu, 2019-06-20 at 14:35 +, Alan Somers wrote: > Author: asomers > Date: Thu Jun 20 14:35:28 2019 > New Revision: 349233 > URL: https://svnweb.freebsd.org/changeset/base/349233 > > Log: > #include from sys/filio.h > > This fixes world build after r349231 > > Reported by:

Re: svn commit: r349233 - head/sys/sys

2019-06-20 Thread Ian Lepore
On Thu, 2019-06-20 at 09:29 -0600, Alan Somers wrote: > On Thu, Jun 20, 2019 at 9:14 AM Ian Lepore wrote: > > > > On Thu, 2019-06-20 at 14:35 +, Alan Somers wrote: > > > Author: asomers > > > Date: Thu Jun 20 14:35:28 2019 > > > New Revision: 34

svn commit: r349269 - head/sys/arm/ti/am335x

2019-06-21 Thread Ian Lepore
Author: ian Date: Fri Jun 21 14:01:02 2019 New Revision: 349269 URL: https://svnweb.freebsd.org/changeset/base/349269 Log: Some mundane tweaks and cleanups to help de-clutter the diffs of some upcoming functional changes. Add an ofw_compat_data table for probing compat strings, and use it

svn commit: r349270 - head/sys/arm/ti/am335x

2019-06-21 Thread Ian Lepore
Author: ian Date: Fri Jun 21 14:24:33 2019 New Revision: 349270 URL: https://svnweb.freebsd.org/changeset/base/349270 Log: Add support for the PWM(9) API. This allows configuring the pwm output using pwm(9), but also maintains the historical sysctl config interface for compatiblity with exi

svn commit: r349271 - head/share/man/man9

2019-06-21 Thread Ian Lepore
Author: ian Date: Fri Jun 21 14:46:43 2019 New Revision: 349271 URL: https://svnweb.freebsd.org/changeset/base/349271 Log: Catch up with recent changes in pwmbus(9). The pwm(9) and pwmbus(9) interfaces were unified into pwmbus(9), and the PWMBUS_CHANNEL_MAX method was renamed PWMBUS_CHANNEL

svn commit: r349272 - head/share/man/man9

2019-06-21 Thread Ian Lepore
Author: ian Date: Fri Jun 21 15:12:17 2019 New Revision: 349272 URL: https://svnweb.freebsd.org/changeset/base/349272 Log: Do some general cleanup and light wordsmithing. Sort methods alphabetically. Wrap long lines. Start sentences on a new line. Remove contractions (not because it's

svn commit: r349273 - head/sys/arm/conf

2019-06-21 Thread Ian Lepore
Author: ian Date: Fri Jun 21 15:44:58 2019 New Revision: 349273 URL: https://svnweb.freebsd.org/changeset/base/349273 Log: Add pwm to the armv7 GENERIC kernel, it's now used by TI and Allwinner. Modified: head/sys/arm/conf/GENERIC Modified: head/sys/arm/conf/GENERIC =

svn commit: r349316 - head/sys/dev/iicbus

2019-06-23 Thread Ian Lepore
Author: ian Date: Sun Jun 23 17:20:39 2019 New Revision: 349316 URL: https://svnweb.freebsd.org/changeset/base/349316 Log: Remove some unused header files from the ad7418 driver. Modified: head/sys/dev/iicbus/ad7418.c Modified: head/sys/dev/iicbus/ad7418.c ===

svn commit: r349317 - in head/sys: arm/allwinner conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Sun Jun 23 17:23:56 2019 New Revision: 349317 URL: https://svnweb.freebsd.org/changeset/base/349317 Log: Add the rtc8583 driver to conf/files. Also, move sy8106a from file.allwinner to conf/files... it's not allwinner-specific, some day other platforms could use the same r

svn commit: r349318 - head/sys/conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Sun Jun 23 17:38:30 2019 New Revision: 349318 URL: https://svnweb.freebsd.org/changeset/base/349318 Log: The sy8106a and syr827 drviers require FDT and the ext_resources subsystem. Modified: head/sys/conf/files Modified: head/sys/conf/files =

svn commit: r349319 - head/sys/conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Sun Jun 23 17:39:13 2019 New Revision: 349319 URL: https://svnweb.freebsd.org/changeset/base/349319 Log: Add some i2c slave-device drivers that were missing from NOTES. Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES =

svn commit: r349325 - head/sys/conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Sun Jun 23 21:17:41 2019 New Revision: 349325 URL: https://svnweb.freebsd.org/changeset/base/349325 Log: Allow compiling ukbdmap.h on arm, since it appears to work fine. Modified: head/sys/conf/files.arm Modified: head/sys/conf/files.arm

svn commit: r349327 - in head/sys: arm/conf conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Mon Jun 24 01:42:09 2019 New Revision: 349327 URL: https://svnweb.freebsd.org/changeset/base/349327 Log: Build an armv7 LINT kernel in addition to armv5 LINT. You might think this had been done years ago. I did. All this time we've only compiled a LINT kernel for TARGET_

svn commit: r349328 - head/sys/conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Mon Jun 24 02:27:17 2019 New Revision: 349328 URL: https://svnweb.freebsd.org/changeset/base/349328 Log: The gpiopps(4) driver currently has probe and attach code only for FDT based systems, so conditionalize it accordingly in conf/files. Modified: head/sys/conf/files Mod

svn commit: r349329 - head/sys/conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Mon Jun 24 02:30:05 2019 New Revision: 349329 URL: https://svnweb.freebsd.org/changeset/base/349329 Log: Add gpio(4) and related drivers to NOTES. Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES ===

svn commit: r349330 - head/sys/conf

2019-06-23 Thread Ian Lepore
Author: ian Date: Mon Jun 24 02:39:56 2019 New Revision: 349330 URL: https://svnweb.freebsd.org/changeset/base/349330 Log: Add pwm devices to NOTES. Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES == ---

Re: svn commit: r349428 - head/sys/dev/ow

2019-06-26 Thread Ian Lepore
On Wed, 2019-06-26 at 17:17 +, Andriy Gapon wrote: > +MODULE_DEPEND(owc_gpiobust, ow, 1, 1, 1); Looks like a typo there. -- Ian ___ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send a

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

2019-07-07 Thread Ian Lepore
Author: ian Date: Sun Jul 7 17:15:45 2019 New Revision: 349807 URL: https://svnweb.freebsd.org/changeset/base/349807 Log: Eliminate spurious periodic.daily error message for rotating accounting log. In 2011, r218961 removed local code for rotating logs in favor of using the rotate_log co

svn commit: r349839 - head/sys/dev/iicbus

2019-07-08 Thread Ian Lepore
Author: ian Date: Mon Jul 8 18:29:37 2019 New Revision: 349839 URL: https://svnweb.freebsd.org/changeset/base/349839 Log: Call device_unbusy() on the error exit path, because if iicbus_request_bus() returns an error, iicbus_release_bus() is not going to be called. Modified: head/sys/dev/ii

svn commit: r349850 - head/sys/dev/iicbus

2019-07-08 Thread Ian Lepore
Author: ian Date: Mon Jul 8 20:26:56 2019 New Revision: 349850 URL: https://svnweb.freebsd.org/changeset/base/349850 Log: Restore the ability for i2c slave devices to do IO from their probe method. r348164 added code to iicbus_request_bus/iicbus_release_bus to automatically call device_b

svn commit: r349873 - head

2019-07-09 Thread Ian Lepore
Author: ian Date: Wed Jul 10 03:45:23 2019 New Revision: 349873 URL: https://svnweb.freebsd.org/changeset/base/349873 Log: Add pwm.9, it was also deleted during the big round of pwm changes. Modified: head/ObsoleteFiles.inc Modified: head/ObsoleteFiles.inc ===

svn commit: r349887 - head/sys/arm/include

2019-07-10 Thread Ian Lepore
Author: ian Date: Wed Jul 10 14:34:52 2019 New Revision: 349887 URL: https://svnweb.freebsd.org/changeset/base/349887 Log: De-pollute arm's sysarch.h. Instead of including stdint.h for uintptr_t, include sys/_types.h and use __types for everything that isn't a native C keyword type.

svn commit: r349891 - head/lib/libc/arm/gen

2019-07-10 Thread Ian Lepore
Author: ian Date: Wed Jul 10 19:32:50 2019 New Revision: 349891 URL: https://svnweb.freebsd.org/changeset/base/349891 Log: Reorganize the SRCS lists as one file per line, and then alphabetize them. No functional changes. Modified: head/lib/libc/arm/gen/Makefile.inc Modified: head/lib/libc/

svn commit: r349972 - in head: lib/libc/arm lib/libc/arm/gen sys/sys

2019-07-13 Thread Ian Lepore
l 13 15:34:29 2019 (r349972) @@ -0,0 +1,77 @@ +.\" Copyright (c) 2019 Ian Lepore +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redi

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

2019-07-13 Thread Ian Lepore
Author: ian Date: Sat Jul 13 16:07:38 2019 New Revision: 349974 URL: https://svnweb.freebsd.org/changeset/base/349974 Log: Limit access to system accounting files. In 2013 the security chapter of the Handbook was updated in r42501 to suggest limiting access to the system accounting file [

svn commit: r349976 - head

2019-07-13 Thread Ian Lepore
Author: ian Date: Sat Jul 13 16:48:27 2019 New Revision: 349976 URL: https://svnweb.freebsd.org/changeset/base/349976 Log: Add an entry mentioning the permission/mode change to daily accounting files. Modified: head/UPDATING Modified: head/UPDATING ===

svn commit: r350015 - head/sys/dev/iicbus

2019-07-15 Thread Ian Lepore
Author: ian Date: Mon Jul 15 21:40:58 2019 New Revision: 350015 URL: https://svnweb.freebsd.org/changeset/base/350015 Log: Fix nxprtc(4) on systems that support i2c repeat-start correctly. An obscure footnote in the datasheets for the PCx2127, PCx2129, and PCF8523 rtc chips states that th

svn commit: r350016 - head/sys/dev/iicbus

2019-07-15 Thread Ian Lepore
Author: ian Date: Mon Jul 15 21:47:40 2019 New Revision: 350016 URL: https://svnweb.freebsd.org/changeset/base/350016 Log: In nxprtc(4), use the countdown timer for better timekeeping resolution on PCx2129 chips too. The datasheet for the PCx2129 chips says that there is only a watchdog

svn commit: r350104 - head/sys/dev/iicbus

2019-07-17 Thread Ian Lepore
Author: ian Date: Thu Jul 18 01:30:56 2019 New Revision: 350104 URL: https://svnweb.freebsd.org/changeset/base/350104 Log: Handle the PCF2127 RTC chip the same as PCF2129 when init'ing the chip. This affects the detection of 24-hour vs AM/PM mode... the ampm bit is in a different location

svn commit: r350106 - head/sys/dev/iicbus

2019-07-17 Thread Ian Lepore
Author: ian Date: Thu Jul 18 01:37:00 2019 New Revision: 350106 URL: https://svnweb.freebsd.org/changeset/base/350106 Log: Fix a paste-o, set is212x = false for other chip types. Doh! Modified: head/sys/dev/iicbus/nxprtc.c Modified: head/sys/dev/iicbus/nxprtc.c =

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

2019-07-18 Thread Ian Lepore
On Thu, 2019-07-18 at 21:41 +, Brooks Davis wrote: > On Thu, Jul 18, 2019 at 09:33:56PM +, Brooks Davis wrote: > > Author: brooks > > Date: Thu Jul 18 21:33:55 2019 > > New Revision: 350116 > > URL: https://svnweb.freebsd.org/changeset/base/350116 > > > > Log: > > Document that setmode(3

svn commit: r350185 - head/sys/dev/iicbus

2019-07-20 Thread Ian Lepore
Author: ian Date: Sat Jul 20 21:10:27 2019 New Revision: 350185 URL: https://svnweb.freebsd.org/changeset/base/350185 Log: Rewrite the nxprtc chip init to extend battery life by using power-saving features offered by the chips. For 2127 and 2129 chips, fix the detection of when chip-init

Re: svn commit: r350184 - in head: libexec/rc/rc.d release/picobsd/tinyware/login share/man/man5 usr.bin/login

2019-07-21 Thread Ian Lepore
On Sat, 2019-07-20 at 20:56 +, Conrad Meyer wrote: > Author: cem > Date: Sat Jul 20 20:56:31 2019 > New Revision: 350184 > URL: https://svnweb.freebsd.org/changeset/base/350184 > > Log: > motd: Generate from template to /var/run > > Update login(1), its manual pages, similar utilities,

svn commit: r350203 - head/sys/dev/iicbus

2019-07-21 Thread Ian Lepore
Author: ian Date: Sun Jul 21 17:14:39 2019 New Revision: 350203 URL: https://svnweb.freebsd.org/changeset/base/350203 Log: Add support for setting the aging/frequency-offset register via sysctl. The 2127 and 2129 chips support a frequency tuning value in the range of -7 through +8 PPM; ad

svn commit: r350231 - head/sys/dev/mmc

2019-07-22 Thread Ian Lepore
Author: ian Date: Mon Jul 22 22:41:44 2019 New Revision: 350231 URL: https://svnweb.freebsd.org/changeset/base/350231 Log: Correct spelling, partion -> partition. Modified: head/sys/dev/mmc/mmcsd.c Modified: head/sys/dev/mmc/mmcsd.c ===

svn commit: r350324 - head

2019-07-25 Thread Ian Lepore
Author: ian Date: Thu Jul 25 15:31:15 2019 New Revision: 350324 URL: https://svnweb.freebsd.org/changeset/base/350324 Log: Fix indentation (spaces->tab). Reported by: garga@ Modified: head/UPDATING Modified: head/UPDATING

Re: svn commit: r349976 - head

2019-07-25 Thread Ian Lepore
On Thu, 2019-07-25 at 10:27 -0300, Renato Botelho wrote: > On 13/07/19 13:48, Ian Lepore wrote: > > Author: ian > > Date: Sat Jul 13 16:48:27 2019 > > New Revision: 349976 > > URL: https://svnweb.freebsd.org/changeset/base/349976 > > > > Log: > >

svn commit: r350361 - head

2019-07-26 Thread Ian Lepore
Author: ian Date: Fri Jul 26 17:58:46 2019 New Revision: 350361 URL: https://svnweb.freebsd.org/changeset/base/350361 Log: Re-wrap the text at 80 columns after fixing the indent in the prior commit. Modified: head/UPDATING Modified: head/UPDATING =

svn commit: r350445 - head/etc/mtree

2019-07-30 Thread Ian Lepore
Author: ian Date: Tue Jul 30 15:51:28 2019 New Revision: 350445 URL: https://svnweb.freebsd.org/changeset/base/350445 Log: Create the /var/account dir with mode 0750; this is a followup to r349974. The rc.d/account script contains code to create the /var/account dir, so it hadn't occurred

Re: svn commit: r350505 - in head: contrib/binutils/binutils/doc gnu/usr.bin/binutils/objdump

2019-08-01 Thread Ian Lepore
On Thu, 2019-08-01 at 14:42 +, Ed Maste wrote: > Author: emaste > Date: Thu Aug 1 14:42:41 2019 > New Revision: 350505 > URL: https://svnweb.freebsd.org/changeset/base/350505 > > Log: > objdump: be explicit that GNU objdump that will be removed > > We may install llvm-objdump as objdum

Re: svn commit: r350505 - in head: contrib/binutils/binutils/doc gnu/usr.bin/binutils/objdump

2019-08-01 Thread Ian Lepore
On Thu, 2019-08-01 at 10:39 -0700, John Baldwin wrote: > On 7/31/19 8:13 PM, Ed Maste wrote: > > On Thu, 1 Aug 2019 at 12:51, Rodney W. Grimes < > > free...@gndrsh.dnsmgr.net> wrote: > > > > > > That would be fine, the important thing is that the > > > r350505 gets listed in the file, > > > > I d

svn commit: r350591 - in head: share/man/man4 sys/conf sys/dev/iicbus sys/modules/i2c sys/modules/i2c/ads111x

2019-08-05 Thread Ian Lepore
/man4/ads111x.4 Mon Aug 5 15:56:44 2019 (r350591) @@ -0,0 +1,240 @@ +.\" +.\" Copyright (c) 2019 Ian Lepore +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions

Re: svn commit: r350702 - head/share/man/man8

2019-08-07 Thread Ian Lepore
On Wed, 2019-08-07 at 21:20 +, Andriy Gapon wrote: > Author: avg > Date: Wed Aug 7 21:20:25 2019 > New Revision: 350702 > URL: https://svnweb.freebsd.org/changeset/base/350702 > > Log: > rc.8: fix a typo in r350701 > > I wronlgy expected that igor(1) checks spelling of all words. >

Re: svn commit: r350737 - head/usr.sbin/autofs

2019-08-08 Thread Ian Lepore
On Thu, 2019-08-08 at 03:16 +, Justin Hibbits wrote: > Author: jhibbits > Date: Thu Aug 8 03:16:32 2019 > New Revision: 350737 > URL: https://svnweb.freebsd.org/changeset/base/350737 > > Log: > Change autounmountd(8) to use time_t for duration instead of double > > Summary: > autounm

svn commit: r350838 - head/sys/arm/ti/am335x

2019-08-10 Thread Ian Lepore
Author: ian Date: Sat Aug 10 17:14:35 2019 New Revision: 350838 URL: https://svnweb.freebsd.org/changeset/base/350838 Log: Switch the am335x_pmic driver to using iicdev_readfrom/writeto. PR: 239697 Submitted by: Chuhong Yuan Modified: head/sys/arm/ti/am335x/am335x_pmic.c Mod

svn commit: r350840 - head/sys/arm/ti/am335x

2019-08-10 Thread Ian Lepore
Author: ian Date: Sat Aug 10 17:28:14 2019 New Revision: 350840 URL: https://svnweb.freebsd.org/changeset/base/350840 Log: Garbage collect the no-longer-necessary MAX_IIC_DATA_SIZE (there is not a buffer allocated at that fixed size anymore). Modified: head/sys/arm/ti/am335x/am335x_pmic.c

svn commit: r350841 - head/sys/arm/ti/am335x

2019-08-10 Thread Ian Lepore
Author: ian Date: Sat Aug 10 17:48:11 2019 New Revision: 350841 URL: https://svnweb.freebsd.org/changeset/base/350841 Log: When responding to an interrupt in the am335x_pmic driver, use a taskqueue thread to do the work that involves i2c IO, which sleeps while the IO is in progress. Modifie

svn commit: r350847 - head/sys/dev/sdhci

2019-08-10 Thread Ian Lepore
Author: ian Date: Sat Aug 10 20:03:14 2019 New Revision: 350847 URL: https://svnweb.freebsd.org/changeset/base/350847 Log: Allow the sdhci timeout sysctl var to be set as a tunable. Also, add a missing newline in a warning printf. Modified: head/sys/dev/sdhci/sdhci.c Modified: head/sys/de

svn commit: r350848 - head/sys/arm/ti/am335x

2019-08-10 Thread Ian Lepore
Author: ian Date: Sat Aug 10 20:05:15 2019 New Revision: 350848 URL: https://svnweb.freebsd.org/changeset/base/350848 Log: The am335x_ehrpwm driver now requires the pwmbus_if interface, add it. Modified: head/sys/arm/ti/am335x/files.am335x Modified: head/sys/arm/ti/am335x/files.am335x ==

svn commit: r350849 - head/sys/arm/ti/am335x

2019-08-10 Thread Ian Lepore
Author: ian Date: Sat Aug 10 20:08:37 2019 New Revision: 350849 URL: https://svnweb.freebsd.org/changeset/base/350849 Log: Remove use of intr_config_hook from the am335x_pmic and tda19988 drivers. Long ago this was needed, but now low-level i2c controller drivers cleverly defer attachment of

svn commit: r350879 - head/sys/arm/ti/am335x

2019-08-11 Thread Ian Lepore
Author: ian Date: Sun Aug 11 23:19:56 2019 New Revision: 350879 URL: https://svnweb.freebsd.org/changeset/base/350879 Log: Revert r350841. I didn't realize that on this chip, reading the interrupt status register clears pending interrupts. By moving that code out of the interrupt handler i

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

2019-08-12 Thread Ian Lepore
Author: ian Date: Tue Aug 13 03:49:53 2019 New Revision: 350971 URL: https://svnweb.freebsd.org/changeset/base/350971 Log: Fix the driver name in ads111x.4, and hook the manpage up to the build. The driver was originally written with the name ads1115, but at the last minute it got renamed

svn commit: r350988 - head/sys/dev/gpio

2019-08-13 Thread Ian Lepore
Author: ian Date: Tue Aug 13 15:38:05 2019 New Revision: 350988 URL: https://svnweb.freebsd.org/changeset/base/350988 Log: Add PNP_INFO to the gpiopps driver. Modified: head/sys/dev/gpio/gpiopps.c Modified: head/sys/dev/gpio/gpiopps.c =

Re: svn commit: r362422 - head/sbin/dump

2020-06-20 Thread Ian Lepore
On Sat, 2020-06-20 at 07:57 -0600, Warner Losh wrote: > On Sat, Jun 20, 2020 at 7:27 AM Hans Petter Selasky wrote: > > > On 2020-06-20 13:10, Rodney W. Grimes wrote: > > > > Author: imp > > > > Date: Sat Jun 20 04:19:17 2020 > > > > New Revision: 362422 > > > > URL:https://svnweb.freebsd.org/chan

Re: svn commit: r362781 - head/sys/compat/linuxkpi/common/include/linux

2020-06-29 Thread Ian Lepore
On Mon, 2020-06-29 at 14:26 -0600, Warner Losh wrote: > On Mon, Jun 29, 2020, 2:15 PM Ravi Pokala > wrote: > > > -Original Message- > > From: on behalf of Hans Petter > > Selasky > > > > Date: 2020-06-29, Monday at 06:08 > > To: , , < > > svn-src-head@freebsd.org> > > Subject: svn commi

svn commit: r363330 - head/sys/dev/iicbus

2020-07-19 Thread Ian Lepore
Author: ian Date: Sun Jul 19 18:53:19 2020 New Revision: 363330 URL: https://svnweb.freebsd.org/changeset/base/363330 Log: The ds3231 RTC chip bitmask values for 12- versus 24-hour mode were reversed, flip them so that times in the 20:00:00 to 23:59:59 range read correctly. Reported by:

Re: svn commit: r363473 - head/share/man/man8

2020-07-24 Thread Ian Lepore
On Fri, 2020-07-24 at 14:17 +, Mateusz Piotrowski wrote: > Author: 0mp (doc,ports committer) > Date: Fri Jul 24 14:17:37 2020 > New Revision: 363473 > URL: https://svnweb.freebsd.org/changeset/base/363473 > > [...] > @@ -237,8 +237,13 @@ The > .Ar name > argument is the > .Xr basename 1 > -

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

2020-07-26 Thread Ian Lepore
Author: ian Date: Sun Jul 26 17:50:39 2020 New Revision: 363569 URL: https://svnweb.freebsd.org/changeset/base/363569 Log: Remove commented-out lines describing the old never-implemented -t option. In 2018, r338094 removed the commented-out code for supporting the -t command line option w

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

2020-07-26 Thread Ian Lepore
Author: ian Date: Sun Jul 26 18:33:29 2020 New Revision: 363576 URL: https://svnweb.freebsd.org/changeset/base/363576 Log: Describe the value in the 're' column of vmstat(8) in terms of freebsd's vm implementation. The old description was left over from the 4.4 BSD Lite import in 1994, and

Re: svn commit: r364010 - head/sbin/iscontrol

2020-08-07 Thread Ian Lepore
On Fri, 2020-08-07 at 17:32 +0200, Emmanuel Vadot wrote: > On Fri, 7 Aug 2020 08:26:00 -0700 (PDT) > "Rodney W. Grimes" wrote: > > > > Author: manu > > > Date: Fri Aug 7 12:19:21 2020 > > > New Revision: 364010 > > > URL: https://svnweb.freebsd.org/changeset/base/364010 > > > > > > Log: > > >

Re: svn commit: r363992 - head/usr.sbin/pwd_mkdb

2020-08-08 Thread Ian Lepore
On Sat, 2020-08-08 at 11:08 +0100, Alexander Richardson wrote: > On Sat, 8 Aug 2020 at 02:19, Mateusz Guzik wrote: > > > > This broke i386 builds: > > > > /usr/src/usr.bin/chpass/field.c:175:15: error: incompatible pointer > > types passing > > '_bootstrap_time_t *' (aka 'unsigned long lon

Re: svn commit: r364166 - head/usr.sbin/crunch/crunchgen

2020-08-13 Thread Ian Lepore
On Wed, 2020-08-12 at 09:24 -0700, Rodney W. Grimes wrote: > > On 12 Aug 2020, at 17:10, Rodney W. Grimes < > > free...@gndrsh.dnsmgr.net> wrote: > > > > > > > Author: arichardson > > > > Date: Wed Aug 12 15:49:06 2020 > > > > New Revision: 364166 > > > > URL: https://svnweb.freebsd.org/changeset/

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

2020-08-19 Thread Ian Lepore
On Wed, 2020-08-19 at 13:54 -0400, Shawn Webb wrote: > On Wed, Aug 19, 2020 at 11:51:10AM -0600, Warner Losh wrote: > > On Wed, Aug 19, 2020 at 11:48 AM Shawn Webb < > > shawn.w...@hardenedbsd.org> > > wrote: > > > > > On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote: > > > > On Wed, Au

Re: svn commit: r364822 - in head/crypto/openssl/crypto: aes/asm bn/asm chacha/asm ec/asm modes/asm poly1305/asm sha/asm

2020-08-26 Thread Ian Lepore
On Wed, 2020-08-26 at 19:04 +0200, Mateusz Guzik wrote: > On 8/26/20, Jung-uk Kim wrote: > > Author: jkim > > Date: Wed Aug 26 16:55:28 2020 > > New Revision: 364822 > > URL: https://svnweb.freebsd.org/changeset/base/364822 > > > > Log: > > Fix Clang version detection. > > > > We prepend "Fr

Re: svn commit: r367678 - head/usr.sbin/freebsd-update

2020-11-17 Thread Ian Lepore
On Tue, 2020-11-17 at 14:41 -0800, Rodney W. Grimes wrote: > > On Sat, Nov 14, 2020 at 11:20 AM Mateusz Piotrowski < > > 0...@freebsd.org> wrote: > > > > > > Hello Rodney, > > > > > > On 11/14/20 4:59 PM, Rodney W. Grimes wrote: > > > > > Author: 0mp (doc,ports committer) > > > > > Date: Sat Nov

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

2020-11-18 Thread Ian Lepore
On Wed, 2020-11-18 at 15:37 -0800, John Baldwin wrote: > On 11/18/20 2:16 PM, Mateusz Guzik wrote: > > On 11/17/20, John Baldwin wrote: > > > On 11/14/20 11:22 AM, Mateusz Guzik wrote: > > > > Interested parties can check the consumer (also seen in the diff) > > to > > see this is for consistency

Re: svn commit: r367920 - head/tools/tools/netmap

2020-11-21 Thread Ian Lepore
On Sat, 2020-11-21 at 18:20 +, Vincenzo Maffione wrote: > Author: vmaffione > Date: Sat Nov 21 18:20:21 2020 > New Revision: 367920 ... > +.Bd -literal -offset intent > s/intent/indent/ ? -- Ian ___ svn-src-head@freebsd.org mailing list https://li

Re: svn commit: r367994 - head/release/arm

2020-11-24 Thread Ian Lepore
On Tue, 2020-11-24 at 17:52 +, Emmanuel Vadot wrote: > Author: manu > Date: Tue Nov 24 17:52:01 2020 > New Revision: 367994 > URL: https://svnweb.freebsd.org/changeset/base/367994 > > Log: > Release: arm: Remove config for old boards > > All those board are impossible to buy nowadays an

Re: svn commit: r367994 - head/release/arm

2020-11-24 Thread Ian Lepore
On Tue, 2020-11-24 at 20:12 +0100, Emmanuel Vadot wrote: > On Tue, 24 Nov 2020 11:56:53 -0700 > Ian Lepore wrote: > > > On Tue, 2020-11-24 at 17:52 +, Emmanuel Vadot wrote: > > > Author: manu > > > Date: Tue Nov 24 17:52:01 2020 > >

svn commit: r368021 - head/sys/arm/ti

2020-11-25 Thread Ian Lepore
Author: ian Date: Wed Nov 25 15:45:20 2020 New Revision: 368021 URL: https://svnweb.freebsd.org/changeset/base/368021 Log: Only attach the ti_scm_syscon driver when running on a compatible TI chip. This prevents attaching on non-TI systems in the GENERIC kernel. Reviewed by: manu@, mmel@

svn commit: r368026 - head/sys/arm/freescale/imx

2020-11-25 Thread Ian Lepore
Author: ian Date: Wed Nov 25 18:09:01 2020 New Revision: 368026 URL: https://svnweb.freebsd.org/changeset/base/368026 Log: A couple small fixes for the imx6_sdma driver... Attach after interrupt controllers, since the attach function tries to set up an interrupt handler. Check for th

svn commit: r368028 - head/sys/arm/conf

2020-11-25 Thread Ian Lepore
Author: ian Date: Wed Nov 25 19:08:22 2020 New Revision: 368028 URL: https://svnweb.freebsd.org/changeset/base/368028 Log: Add the standard extres pseudo devices to the IMX6 kernel config. Some imx6 drivers are being converted to use features that weren't available when they were first wr

svn commit: r368029 - in head/sys: arm/freescale/imx modules/imx/imx6_snvs

2020-11-25 Thread Ian Lepore
Author: ian Date: Wed Nov 25 19:10:20 2020 New Revision: 368029 URL: https://svnweb.freebsd.org/changeset/base/368029 Log: Convert the imx6_snvs RTC driver to access registers via the syscon device. This is required for it to work correctly in the GENERIC kernel. Modified: head/sys/arm/free

svn commit: r368030 - head/sys/arm/freescale/imx

2020-11-25 Thread Ian Lepore
Author: ian Date: Wed Nov 25 20:05:05 2020 New Revision: 368030 URL: https://svnweb.freebsd.org/changeset/base/368030 Log: Extend the imx6 gpc->gic interrupt controller fixup of fdt data at runtime to work with the pmu and tempmon nodes as well as the soc node. This allows interrupts to wor

svn commit: r368042 - in head: share/doc/legal share/doc/legal/imx sys/arm/freescale/imx sys/contrib/dev/imx

2020-11-25 Thread Ian Lepore
Author: ian Date: Thu Nov 26 01:40:04 2020 New Revision: 368042 URL: https://svnweb.freebsd.org/changeset/base/368042 Log: Add the firmware blob required to use the sdma hardware in the imx6 processor, and its associated license text (which is similar to a bsd-3-clause, but with a prohibitio

Re: svn commit: r368163 - in head: sbin/ifconfig sys/dev/if_wg sys/dev/if_wg/include sys/dev/if_wg/include/crypto sys/dev/if_wg/include/sys sys/dev/if_wg/include/zinc sys/dev/if_wg/module sys/dev/if_w

2020-11-29 Thread Ian Lepore
On Sun, 2020-11-29 at 19:20 -0500, Shawn Webb wrote: > On Sun, Nov 29, 2020 at 07:38:04PM +, Matt Macy wrote: > > Author: mmacy > > Date: Sun Nov 29 19:38:03 2020 > > New Revision: 368163 > > URL: https://svnweb.freebsd.org/changeset/base/368163 > > > > Log: > > Import kernel WireGuard suppo

Re: svn commit: r368187 - head/sys/dev/nvme

2020-11-30 Thread Ian Lepore
On Mon, 2020-11-30 at 14:51 +, Michal Meloun wrote: > Author: mmel > Date: Mon Nov 30 14:51:48 2020 > New Revision: 368187 > URL: https://svnweb.freebsd.org/changeset/base/368187 > > Log: > Unbreak r368167 in userland. Decorate unused arguments. > > Reported by:kp, tuexen, jenki

Re: svn commit: r368187 - head/sys/dev/nvme

2020-11-30 Thread Ian Lepore
On Mon, 2020-11-30 at 17:56 +0100, Michal Meloun wrote: > > On 30.11.2020 17:02, Ian Lepore wrote: > > On Mon, 2020-11-30 at 14:51 +, Michal Meloun wrote: > > > Author: mmel > > > Date: Mon Nov 30 14:51:48 2020 > > > New Revision: 368187 > > >

svn commit: r368585 - in head: sys/dev/gpio sys/sys tools/test tools/test/gpioevents usr.sbin/gpioctl

2020-12-12 Thread Ian Lepore
Author: ian Date: Sat Dec 12 18:34:15 2020 New Revision: 368585 URL: https://svnweb.freebsd.org/changeset/base/368585 Log: Provide userland notification of gpio pin changes ("userland gpio interrupts"). This is an import of the Google Summer of Code 2018 project completed by Christian Kr

Re: svn commit: r368714 - head/lib/libc/string

2020-12-17 Thread Ian Lepore
On Thu, 2020-12-17 at 18:22 +0200, Konstantin Belousov wrote: > On Thu, Dec 17, 2020 at 01:01:01PM +, Jessica Clarke wrote: > > On 17 Dec 2020, at 12:53, Konstantin Belousov > > wrote: > > > > > > On Thu, Dec 17, 2020 at 12:41:47PM +, Mateusz Piotrowski > > > wrote: > > > > Author: 0mp (d

Re: svn commit: r355301 - head/usr.sbin/bhyve

2019-12-02 Thread Ian Lepore
On Mon, 2019-12-02 at 20:51 +, Vincenzo Maffione wrote: > Author: vmaffione > Date: Mon Dec 2 20:51:46 2019 > New Revision: 355301 > URL: https://svnweb.freebsd.org/changeset/base/355301 > > Log: > bhyve: uniform printf format string newlines > > Some of the printf statements only use

Re: svn commit: r355301 - head/usr.sbin/bhyve

2019-12-02 Thread Ian Lepore
On Mon, 2019-12-02 at 22:35 +0100, Vincenzo Maffione wrote: > Il giorno lun 2 dic 2019 alle ore 22:14 Ian Lepore > ha > scritto: > > > On Mon, 2019-12-02 at 20:51 +, Vincenzo Maffione wrote: > > > Author: vmaffione > > > Date: Mon Dec 2 20:51:46 2019

Re: svn commit: r355301 - head/usr.sbin/bhyve

2019-12-03 Thread Ian Lepore
On Mon, 2019-12-02 at 23:22 -0800, Rodney W. Grimes wrote: > > On Mon, 2019-12-02 at 20:51 +, Vincenzo Maffione wrote: > > > Author: vmaffione > > > Date: Mon Dec 2 20:51:46 2019 > > > New Revision: 355301 > > > URL: https://svnweb.freebsd.org/changeset/base/355301 > > > > > > Log: > > > bh

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

2019-12-03 Thread Ian Lepore
On Tue, 2019-12-03 at 12:59 -0800, Ryan Libby wrote: > > +* XXX UMA_ZONE_OFFPAGE. All over freebsd we have cryptic XXX comments that have no meaning to anyone except whoever wrote them (and, I suspect, no meaning to those people either after a couple months have elapsed). To the degree th

svn commit: r355411 - head/share/man/man7

2019-12-04 Thread Ian Lepore
Author: ian Date: Thu Dec 5 04:18:22 2019 New Revision: 355411 URL: https://svnweb.freebsd.org/changeset/base/355411 Log: Fix a trivial typo and add a missing word. Modified: head/share/man/man7/arch.7 Modified: head/share/man/man7/arch.7

Re: svn commit: r355407 - head/sys/fs/tmpfs

2019-12-05 Thread Ian Lepore
On Thu, 2019-12-05 at 10:05 -0800, Enji Cooper wrote: > > On Dec 5, 2019, at 05:36, Konstantin Belousov > > wrote: > > ... > > > > Could you elaborate on the why/rationale? > > > > > > Is there memory wastage/duplication, bug(s), performance or > > > development/maintenance benefit? > > > > E

Re: svn commit: r355301 - head/usr.sbin/bhyve

2019-12-05 Thread Ian Lepore
On Thu, 2019-12-05 at 11:21 -0800, Rodney W. Grimes wrote: > > On 12/4/19 9:35 PM, Rodney W. Grimes wrote: > > > > I see, thanks for the pointers. > > > > It looks like cfmakeraw() and tcsetattr() were what I was > > > > looking for. > > > > A bhyve-specific printf wrapper looks the right solution

svn commit: r355439 - in head/sys/arm: arm include

2019-12-05 Thread Ian Lepore
Author: ian Date: Fri Dec 6 03:48:35 2019 New Revision: 355439 URL: https://svnweb.freebsd.org/changeset/base/355439 Log: Declare the global kernel symbols created by ldscript.arm in arm's machdep.h, and remove a couple scattered local declarations. Most of these aren't referenced in C c

Re: svn commit: r355444 - in head/sys: arm/mv arm64/conf conf

2019-12-06 Thread Ian Lepore
On Fri, 2019-12-06 at 12:55 +, Luiz Otavio O Souza wrote: > Author: loos > Date: Fri Dec 6 12:55:39 2019 > New Revision: 355444 > URL: https://svnweb.freebsd.org/changeset/base/355444 > > Log: > Add the SPI driver for the Marvell Armada 37x0 SoC. > > Interrupt based driver, implements

Re: svn commit: r355461 - head/sys/arm/mv

2019-12-06 Thread Ian Lepore
On Fri, 2019-12-06 at 20:05 +, Luiz Otavio O Souza wrote: > Author: loos > Date: Fri Dec 6 20:05:08 2019 > New Revision: 355461 > URL: https://svnweb.freebsd.org/changeset/base/355461 > > Log: > Fix the ARM64 build, include the necessary header. > > While here, call device_delete_chil

svn commit: r355467 - head/sys/dev/gpio

2019-12-06 Thread Ian Lepore
Author: ian Date: Fri Dec 6 22:32:06 2019 New Revision: 355467 URL: https://svnweb.freebsd.org/changeset/base/355467 Log: Implement bus_rescan for gpiobus(4). This allows on-the-fly reconfiguration of gpio devices by using kenv to add hints for a new device and then do 'devctl rescan gpiob

svn commit: r355499 - in head/sys/modules/gpio: . gpioths

2019-12-07 Thread Ian Lepore
Author: ian Date: Sat Dec 7 17:54:40 2019 New Revision: 355499 URL: https://svnweb.freebsd.org/changeset/base/355499 Log: Add module build stuff for gpioths(4), a driver for DHT11/DHT22 sensors. Added: head/sys/modules/gpio/gpioths/ head/sys/modules/gpio/gpioths/Makefile (contents, props

svn commit: r355531 - head/sys/dev/gpio

2019-12-08 Thread Ian Lepore
Author: ian Date: Sun Dec 8 20:13:42 2019 New Revision: 355531 URL: https://svnweb.freebsd.org/changeset/base/355531 Log: Several small fixes for the gpioths (temp/humidity sensor) driver. At the end of a read cycle, set the gpio pin to INPUT rather than OUTPUT. The state of the single-w

svn commit: r355532 - head/sys/dev/gpio

2019-12-08 Thread Ian Lepore
Author: ian Date: Sun Dec 8 20:36:13 2019 New Revision: 355532 URL: https://svnweb.freebsd.org/changeset/base/355532 Log: Simplify sysctl stuff in the gpioths driver. There is no need to use local functions to handle the sysctls, they all just access simple readonly integer variables. The

<    1   2   3   4   5   6   7   8   9   10   >