Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (4h)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (178d) 

2024-05-10 02:45:35 UTC Now

2017-09-12 05:28:31 UTC MAIN commitmail json YAML

Fix panic caused by rev. 1.58's change. Don't if_start from interrupt context.
The restart code exists in ixv_handle_que().

(msaitoh)

2017-09-12 01:01:25 UTC MAIN commitmail json YAML

2017-09-11 22:31:42 UTC jdolecek-ncq commitmail json YAML

doesn't seem the freeze/thaw in error recovery can cause the thread to panic,
all commands within are executed as polled and hence thread is not invoked

(jdolecek)

2017-09-11 22:30:05 UTC jdolecek-ncq commitmail json YAML

atastart() rechecked - it's okay to call it even in error path in those
several cases we do, it's just optimization to skip the call; I'm not even
very convinced it's useful to have this conditional, but keeping for now
until proven harmful

(jdolecek)

2017-09-11 22:19:23 UTC jdolecek-ncq commitmail json YAML

fix condition for calling atastart() when command is done

(jdolecek)

2017-09-11 22:16:18 UTC jdolecek-ncq commitmail json YAML

move debug printf where it belongs

(jdolecek)

2017-09-11 22:00:05 UTC MAIN commitmail json YAML

Add support for sun50i new timing mode and calibration.

(jmcneill)

2017-09-11 20:44:14 UTC MAIN commitmail json YAML

Add local patches to sun8i-h3-orangepi-one to enable HDMI support.

(jun)

2017-09-11 19:25:07 UTC MAIN commitmail json YAML

sun4v: Update code to retrieve CPU clock frequency so it can handle (future?) CPU clock frequencies above the 32-bit limit. ok mrg@

(palle)

2017-09-11 15:24:28 UTC MAIN commitmail json YAML

Clear the screen after running installboot.  If we don't, there will
be a leftover line saying "Status: Finished" at the top of the next
screen, along with some random punctuation in the left and right
margins.  Inspired by ../landisk/md.c 1.3.

(gson)

2017-09-11 14:12:28 UTC MAIN commitmail json YAML

Don't start another copy of rtadvd if one is running.

(christos)

2017-09-11 14:12:07 UTC MAIN commitmail json YAML

KNF, fix time printing formats.

(christos)

2017-09-11 10:11:05 UTC MAIN commitmail json YAML

Print Mailbox API version.

(msaitoh)

2017-09-11 09:52:13 UTC MAIN commitmail json YAML

Use cprng_strong64() insread of cprng_fast64() to prevent panic.

(msaitoh)

2017-09-11 09:21:56 UTC MAIN commitmail json YAML

Use PSCI for reset and poweroff when available.

(jmcneill)

2017-09-11 07:33:45 UTC MAIN commitmail json YAML

keep dsb in vchiq code.

dsb refers to an arm instruction, so it won't be used on MI code.

(maya)

2017-09-11 06:02:09 UTC MAIN commitmail json YAML

Improve tracking of the state of an event's callout, and protect all
queries or modifications of the state with the sme_mtx mutex.

Detach the rndsrc before re-attaching it (with potentially new values).

Clean up some lock-ordering issues.

And a couple of KNF issues for good measure!

Should address PR kern/52533

XXX Pullup-8 along with the previous fixes from msaitoh@
XXX http://mail-index.netbsd.org/source-changes/2017/09/06/msg088028.html
~
~

(pgoyette)

2017-09-11 05:59:06 UTC netbsd-7 commitmail json YAML

2017-09-11 05:50:12 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #1505):
sys/arch/x86/x86/procfs_machdep.c: 1.15-1.16
- Print 0x00000007:0 ecx leaf bits.
- Don't print fdiv_bug on amd64.
- Print APIC ID, Initial APIC ID and clflush size.
--
Check buffer length correctly to not to print a garbage character.
Fixes PR#52352 reported by Yasushi Oshima.

(snj)

2017-09-11 05:46:44 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jdolecek in ticket #1498):
sys/netinet/tcp_usrreq.c: revision 1.216
add some more getsockopt(2) params

(snj)

2017-09-11 05:45:47 UTC netbsd-8 commitmail json YAML

256, 265, 266-269, 271-274, 277

(snj)

2017-09-11 05:33:23 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by isaki in ticket #274):
sys/dev/audio.c: 1.379, 1.380, 1.385, 1.398
Fix error handling of ring buffers allocation in audioattach().
NULL dereference, dead code, reference to uninitialized variable,
and mutex leak.
XXX In the current implementation, if audio_alloc_ring() returns error,
    it is not guaranteed that ringbuf->s.start will be NULL.
--
Fix a resource leak on error handling in audio_alloc_ring().
--
Fix resource leaks on error handling in audio_open().
--
Avoid possibility of integer overflow (and clean up).
- On 32bit arch and type argument is int32_t, orig[m] * tomix[m] is
  calculated first with int32 (possibility of overflow here) and then
  cast to int64_t for assignment.
- bigger_type is sufficient for product and result.

(snj)

2017-09-11 05:29:38 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by isaki in ticket #273):
sys/dev/audio.c: 1.368, 1.370
sys/dev/audiovar.h: revision 1.57
Fix division by zero when precision < 8 in ifdef AUDIO_INTR_TIME.
--
Improve in #ifdef AUDIO_INTR_TIME.
Stop 19 years old weird #define, stop signed/unsigned mixing,
use int64_t instead of (u_)long to avoid integer overflow,
rearrange definitions in header, and fix indent.

(snj)

2017-09-11 05:27:19 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by sevan in ticket #272):
usr.sbin/veriexecgen/veriexecgen.c: 1.18
usr.sbin/veriexecgen/veriexecgen.8: 1.18-1.19
Remove the ability to generate a signature database with the hash algorithms
MD5, SHA1 & RMD160 which are either broken or on their way to being broken.
Discussed on tech-security
http://mail-index.netbsd.org/tech-security/2017/08/21/msg000936.html
ok riastradh
--
Fix enumeration.

(snj)

2017-09-11 05:25:53 UTC MAIN commitmail json YAML

Use common barrier.h rather than separate implementation. NFCI

(maya)

2017-09-11 05:25:20 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #271):
sys/arch/arm/cortex/gtmr.c: revision 1.20
gtmr_intr: If the ISTATUS bit is 0, timer condition is not met. In this
case, just return 0.

(snj)

2017-09-11 05:24:16 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #269):
sys/arch/arm/sunxi/sunxi_emac.c: revision 1.6
Fix a typo that prevented ahb reset from ever being deasserted.

(snj)

2017-09-11 05:22:18 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by nakayama in ticket #268):
usr.sbin/mtree/only.c: revision 1.3
Don't modify strings stored in hash, otherwise filling up of
directory hierarchy stops if the same hash value occurs in
directory and leaf.
Fix the issue that
"./usr/share/locale/pl/LC_MESSAGES/gettext-tools.mo" isn't included
in sets file in the case of MKUNPRIVED=no.

(snj)

2017-09-11 05:22:10 UTC MAIN commitmail json YAML

2017-09-11 05:20:26 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #267):
sys/arch/mips/include/vmparam.h: revision 1.60
Don't define UVM_KM_VMFREELIST on mips as it excludes some memory
ranges unnecessarily.
PR/52501 - erlite quickly fails to allocate memory and processes wedge

(snj)

2017-09-11 05:20:17 UTC MAIN commitmail json YAML

Move barrier to common so it can be shared with vchiq

(maya)

2017-09-11 05:18:34 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by bsiegert in ticket #266):
external/bsd/dhcpcd/dist/src/dhcp.c: revision 1.2
dhcp: Fix classless static routes
Assign the netwask correctly from the message.
Cherry-picked from upstream in
https://dev.marples.name/rDHC510c760cb24ef4b1b16cc14732c5ffe0fbb0d96d.
This fixes route assignments when running on Google Compute Engine,
which uses classless static routes.

(snj)

2017-09-11 05:14:56 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by phx in ticket #265):
sys/arch/amiga/dev/wdc_xsurf.c: revision 1.3
Set the correct device data size wdc_xsurf_softc instead of wdc_softc.

(snj)

2017-09-11 05:13:46 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #256):
sys/arch/i386/conf/GENERIC: revision 1.1159 via patch
sys/arch/i386/conf/XEN3_DOMU: revision 1.78 via patch
sys/arch/i386/conf/XEN3_DOM0: revision 1.114 via patch
sys/kern/kern_exec.c: 1.443-1.444 via patch
Disable svr4 and ibcs2 by default.
These options are not well-tested, of a limited use case, and the potential
for damage is too high. Vulnerabilities were presented at DEFCON 25 - I see
that at least one of them can be exploited to get ring0 privileges.
--
Remove compat_freebsd from the list of autoloaded modules. Interested users
will now have to type 'modload' to use it, or uncomment the entry in
GENERIC. I should have removed it when I disabled COMPAT_FREEBSD by
default, sorry about that.
--
Remove compat_svr4, compat_svr4_32 and compat_ibcs2 from the list of
autoloaded modules. These options are disabled everywhere (except ibcs2
on Vax, but Vax does not support kernel modules, so doesn't matter),
therefore there is no issue in removing them from the list. Interested
users will now have to do a 'modload' first, or uncomment the entries in
GENERIC.

(snj)

2017-09-11 04:58:45 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #277):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 04:56:12 UTC netbsd-7-0 commitmail json YAML

2017-09-11 04:56:02 UTC netbsd-7-1 commitmail json YAML

2017-09-11 04:55:52 UTC netbsd-7 commitmail json YAML

2017-09-11 04:53:55 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #1509):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 04:53:52 UTC netbsd-7-1 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #1509):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 04:53:50 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #1509):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 04:46:47 UTC netbsd-6-0 commitmail json YAML

2017-09-11 04:46:35 UTC netbsd-6-1 commitmail json YAML

2017-09-11 04:46:22 UTC netbsd-6 commitmail json YAML

2017-09-11 04:43:23 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #1503):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 04:43:20 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #1503):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 04:43:17 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #1503):
crypto/external/bsd/heimdal/include/config.h: revision 1.9
crypto/external/bsd/heimdal/dist/lib/gssapi/mech/gss_pname_to_uid.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/getxxyyy.c: revision 1.3
crypto/external/bsd/heimdal/dist/configure.ac: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/config.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/kuserok.c: revision 1.3
crypto/external/bsd/heimdal/dist/cf/check-getpwuid_r-posix.m4: revision 1.1
crypto/external/bsd/heimdal/include/roken.h: revision 1.8
crypto/external/bsd/heimdal/dist/lib/krb5/get_default_principal.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/hx509/softp11.c: revision 1.3
crypto/external/bsd/heimdal/dist/kcm/client.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/krb5/config_file.c: revision 1.3
crypto/external/bsd/heimdal/dist/lib/roken/roken.h.in: revision 1.5
always use rk_getpwnam_r...
--
This is why we have libroken...
--
Use getpwuid_r instead of getpwuid, so that we don't trash getpw*() internal
buffers.
kde does (kdm/client/backend.c):
    p = getpwnam();
    pam_setcred() (which calls getpwuid in pam_afslog);
    setusercontext(...,p,p->pw_uid,...) (now with trashed p data...)

(snj)

2017-09-11 00:58:20 UTC MAIN commitmail json YAML

Include opt_multiprocessor.h for MULTIPROCESSOR

(maya)

2017-09-10 23:03:06 UTC MAIN commitmail json YAML

Allow USB keyboards to attach as console devices.

(jmcneill)

2017-09-10 22:51:49 UTC MAIN commitmail json YAML

sys/errno.h for EFAULT

ok riastradh

(maya)

2017-09-10 19:31:15 UTC jdolecek-ncq commitmail json YAML

refactor code so that xfer c_start() hook is called with channel mutex held,
and hence the controller submit code no longer relies on spl

tested all the affected drivers - wdc (via piixide), ahci, mvsata, siisata,
both disk and atapi I/O

(jdolecek)

2017-09-10 19:22:57 UTC jdolecek-ncq commitmail json YAML

fix regression in atabus_thread() when it was converted from spl to mutex -
the reset and c_start() routines expect to run on splbio; wrap the calls
insite splbio/splx() again for now, since we can't hold the mutex while calling
them

fixes problem experienced by Jonathan, where drive setup triggered
an spurious interrupt and panic due to state < READY

(jdolecek)

2017-09-10 19:08:18 UTC MAIN commitmail json YAML

Update wifi guide to reflect dhcpcd no longer invoking wpa_supplicant

(maya)

2017-09-10 18:40:28 UTC MAIN commitmail json YAML

Correct model and compatible string for Pinebook

(jmcneill)

2017-09-10 18:37:21 UTC jdolecek-ncq commitmail json YAML

move mvsata_bio(), mvsata_exec_command() and mvsata_atapi_scsipi_request()
just before their respective hook functions

(jdolecek)

2017-09-10 17:06:58 UTC MAIN commitmail json YAML

2017-09-10 17:01:07 UTC MAIN commitmail json YAML

Use looked up remote host for remote message without a hostname

An incoming remote message may not necessarily have a hostname
between the timestamp and the message. The the source of the remote
sender is already looked up so use that hostname/IP address rather
than the local hostname.

XXX: pullup-8
XXX: pullup-7
XXX: pullup-6

(ginsbach)

2017-09-10 10:51:13 UTC MAIN commitmail json YAML

2017-09-10 10:13:47 UTC MAIN commitmail json YAML

2017-09-10 10:12:43 UTC MAIN commitmail json YAML

2017-09-10 10:12:21 UTC MAIN commitmail json YAML

Sort sections. Make error descriptions complete sentences.

(wiz)

2017-09-10 10:09:40 UTC MAIN commitmail json YAML

Sync usage with man page.

(wiz)

2017-09-10 10:09:35 UTC MAIN commitmail json YAML

Sort flags in SYNOPSIS. Remove unnecessary .Tn. Remove trailing whitespace.

(wiz)

2017-09-10 00:49:40 UTC MAIN commitmail json YAML

Fix a typo, and some wording improvements.

(kre)

2017-09-09 23:51:58 UTC MAIN commitmail json YAML

two minor fixes for -x and -y mode:
- the header is only 1 line not 2, account for this when calculating
  when to display the next header.
- when ndrives > 1, don't display the header every time, but only when
  the previous one disappears.

now i don't feel the need to run "iostat -x wd0 1 & iostat -c wd1 1"
to get less repeated header output on my display.

(mrg)

2017-09-09 23:21:45 UTC MAIN commitmail json YAML

Support <pthread_typs.h> on C89 compilers

Clang 5.0.0(svn) reports warnings on <pthread_types.h> for C99 constructs
when used with strict -std=c89.

Restrict designated initializers usage to C99 or newer code.
C89 and C++ will share the same code without extension of designated
initializers.

PR 52285

(kamil)

2017-09-09 21:34:07 UTC MAIN commitmail json YAML

Note veriexecgen change

(sevan)

2017-09-09 21:27:23 UTC MAIN commitmail json YAML

Remove the ability to generate a signature database with the hash algorithms
MD5, SHA1 & RMD160 which are either broken or on their way to being broken.

Discussed on tech-security
http://mail-index.netbsd.org/tech-security/2017/08/21/msg000936.html

ok riastradh

(sevan)

2017-09-09 18:45:04 UTC MAIN commitmail json YAML

Remove the BUGS section from devname(3)

devname(3) does not report type of error on purpose.

Suggested by <kre>

(kamil)

2017-09-09 18:18:28 UTC MAIN commitmail json YAML

Install new man-page devname_r(3).

This is a link to devname(3).

(kamil)

2017-09-09 18:00:40 UTC MAIN commitmail json YAML

Document devname_r(3) in devname(3).

Improve clarity of devname(3) mentioning that it returns a pointer to the
buffer pointer. This approach is not thread-safe and not reentrant.

Not that devname(3) does not set errno on failure and document it as a bug.

(kamil)

2017-09-09 17:38:24 UTC netbsd-8 commitmail json YAML

2017-09-09 17:29:41 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #258):
sys/arch/amd64/conf/ALL: 1.68
sys/arch/i386/conf/ALL: 1.428
sys/arch/i386/i386/i386_trap.S: 1.12
sys/arch/i386/i386/locore.S: 1.149-1.150
sys/arch/x86/x86/sys_machdep.c: 1.38
Remove undocumented hack.
--
Switch to the temporary stack right away when booted via multiboot. GRUB
happens to give a correct stack, but it is not guaranteed by the spec. This
temporary stack will be reset later, which is fine.
Fixes PR/50245.
--
Pfff, use %ss and not %ds. The latter is controlled by userland, the former
contains the kernel value (flat); FreeBSD fixed this too a few weeks ago.
As I said earlier, this dtrace code is complete bullshit.
--
Don't allow userland to create 286/386 call gates anymore - they are not
used by Wine. While here, don't allow it to overwrite the static entries
either, don't allow unknown entry types, remove LDT_DEBUG, and style.

(snj)

2017-09-09 17:01:23 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #270):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 16:58:10 UTC netbsd-7-0 commitmail json YAML

2017-09-09 16:57:58 UTC netbsd-7-1 commitmail json YAML

2017-09-09 16:57:48 UTC netbsd-7 commitmail json YAML

2017-09-09 16:57:38 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1507):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 16:57:36 UTC netbsd-7-1 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1507):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 16:57:34 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1507):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 16:54:40 UTC netbsd-6 commitmail json YAML

2017-09-09 16:54:15 UTC netbsd-6-1 commitmail json YAML

2017-09-09 16:53:55 UTC netbsd-6-0 commitmail json YAML

2017-09-09 16:53:36 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1502):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 16:53:35 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1502):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 16:53:33 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1502):
sys/compat/linux32/arch/amd64/linux32_machdep.c: revision 1.39
Fix a ring0 escalation vulnerability in compat_linux32 where the
index of %cs is controlled by userland, making it easy to trigger
the page fault and get kernel privileges.

(snj)

2017-09-09 14:41:20 UTC MAIN commitmail json YAML

Fix a race between sysctl_unpcblist and closef.

(joerg)

2017-09-09 14:12:09 UTC MAIN commitmail json YAML

add dtc (Device Tree Compiler) version info

(jmcneill)

2017-09-09 13:14:30 UTC MAIN commitmail json YAML

gtmr_intr: If the ISTATUS bit is 0, timer condition is not met. In this
case, just return 0.

(jmcneill)

2017-09-09 12:28:19 UTC MAIN commitmail json YAML

Correct the documentatin of ptsname_r(3)

This function returns "int" not "char *": errno on failure, 0 on success.

(kamil)

2017-09-09 12:05:29 UTC MAIN commitmail json YAML

Enable USB-OTG-EHCI and USB-OTG-OHCI controllers on Pine64+.

(jmcneill)

2017-09-09 12:02:58 UTC MAIN commitmail json YAML

2017-09-09 12:01:04 UTC MAIN commitmail json YAML

Add support for USB OTG controllers in "host" mode.

(jmcneill)

2017-09-09 11:58:34 UTC MAIN commitmail json YAML

Add PHY init for OTG ports in host mode.

(jmcneill)

2017-09-08 21:45:08 UTC MAIN commitmail json YAML

Print negative time offsets correctly.  Provide an exegetical quote
from riastradh@, slightly edited to fit the metre.

(uwe)

2017-09-08 21:09:29 UTC MAIN commitmail json YAML

Option -E to display elapsed timestamps (time since beginning of trace).

Option name from FreeBSD.  While here, make it possible to use a
combination of -T -E and -R to display timestamps in several formats.
Idea also from FreeBSD.

(uwe)

2017-09-08 20:36:56 UTC MAIN commitmail json YAML

Drop support for KTRFACv0 (NetBSD 3) and KTRFACv1 (NetBSD 5).
Note that on 32-bit platforms it probably never worked anyway because
header size changed from v1 to v2 when time_t became 64 bit.

ok christos@
CVS: ----------------------------------------------------------------------
CVS: CVSROOT  cvs.NetBSD.org:/cvsroot
CVS: please use "PR category/123" to have the commitmsg appended to PR 123
CVS:
CVS: Please evaluate your changes and consider the following.
CVS: Abort checkin if you answer no.
CVS: => For all changes:
CVS: Do the changed files compile?
CVS: Has the change been tested?
CVS: => If you are not completely familiar with the changed components:
CVS: Has the change been posted for review?
CVS: Have you allowed enough time for feedback?
CVS: => If the change is major:
CVS: => If the change adds files to, or removes files from $DESTDIR:
CVS: => If you are changing a library or kernel interface:
CVS: Have you successfully run "./build.sh release"?

(uwe)

2017-09-08 15:29:44 UTC MAIN commitmail json YAML

2017-09-08 14:57:44 UTC MAIN commitmail json YAML

2017-09-08 14:52:50 UTC MAIN commitmail json YAML

2017-09-08 14:01:46 UTC MAIN commitmail json YAML

2017-09-08 14:01:13 UTC MAIN commitmail json YAML

2017-09-08 13:41:40 UTC MAIN commitmail json YAML

2017-09-08 13:40:25 UTC MAIN commitmail json YAML

2017-09-08 10:53:55 UTC MAIN commitmail json YAML

Remove duplicate words in comment.

(wiz)

2017-09-08 10:17:18 UTC MAIN commitmail json YAML

Include tegra210 dts files with kernel build

(jmcneill)

2017-09-08 09:50:45 UTC MAIN commitmail json YAML

Introduce CDRELEASE_NODEBUG - if set, avoids putting debug sets in the
ISO image.

Set this for sparc64 install CDs - many of the supported machines have
SCSI CD drives and it is impossible to get DVD replacements for those.

This is a pitty, but in the end a working install medium is more worth
than debug sets (which can be downloaded later).

(martin)

2017-09-08 08:16:09 UTC MAIN commitmail json YAML

Remove comment (and its typo) that doesn't apply any more.

(skrll)

2017-09-08 07:44:39 UTC MAIN commitmail json YAML

expat-2.2.4 out.

(wiz)

2017-09-08 05:29:12 UTC MAIN commitmail json YAML

2017-09-07 23:19:45 UTC MAIN commitmail json YAML

Remove AHB2 source select init for now, it seems to cause EMAC RX problems

(jmcneill)

2017-09-07 21:46:43 UTC MAIN commitmail json YAML

Add simplefb stub for Allwinner A64

(jmcneill)

2017-09-07 21:37:56 UTC MAIN commitmail json YAML

2017-09-07 21:36:20 UTC MAIN commitmail json YAML

Fix a typo that prevented ahb reset from ever being deasserted.

(jmcneill)

2017-09-07 21:22:51 UTC MAIN commitmail json YAML

Build sun50i-a64 dts files

(jmcneill)

2017-09-07 21:22:19 UTC MAIN commitmail json YAML

Add support for building dts files from multiple paths, idea from christos

(jmcneill)

2017-09-07 18:57:47 UTC MAIN commitmail json YAML

2017-09-07 12:52:29 UTC MAIN commitmail json YAML

Apply bug fix from lua.org/bugs.html (dead keys with nil values can stay
in weak tables).

(mbalmer)

2017-09-07 10:30:46 UTC MAIN commitmail json YAML

2017-09-07 10:23:33 UTC MAIN commitmail json YAML

2017-09-07 10:23:32 UTC MAIN commitmail json YAML

2017-09-07 10:18:26 UTC MAIN commitmail json YAML

2017-09-07 06:40:42 UTC MAIN commitmail json YAML

2017-09-07 06:36:24 UTC MAIN commitmail json YAML

Don't define UVM_KM_VMFREELIST on mips as it excludes some memory
ranges unnecessarily.

PR/52501 - erlite quickly fails to allocate memory and processes wedge

(skrll)

2017-09-07 06:29:47 UTC MAIN commitmail json YAML

There's no need to call pmap_tlb_invalidate_addr if pmap_remove_all was
called and PMAP_DEFERRED_ACTIVATE is set.

(skrll)

2017-09-07 04:40:56 UTC MAIN commitmail json YAML

Don't define GAS adddess ID constants in acpidump.h and use actypes.h's
definitions. No functional change.

(msaitoh)

2017-09-07 04:05:21 UTC MAIN commitmail json YAML

Add test mtree -O with same hash value in directory and leaf.

(nakayama)

2017-09-07 04:04:14 UTC MAIN commitmail json YAML

Don't modify strings stored in hash, otherwise filling up of
directory hierarchy stops if the same hash value occurs in
directory and leaf.

Fix the issue that
"./usr/share/locale/pl/LC_MESSAGES/gettext-tools.mo" isn't included
in sets file in the case of MKUNPRIVED=no.

(nakayama)

2017-09-07 01:07:04 UTC MAIN commitmail json YAML

2017-09-06 18:21:17 UTC MAIN commitmail json YAML

PR/52522: ent_name is not necessarily 0 terminated, so check bounds.
XXX: pullup-8

(christos)

2017-09-06 18:17:18 UTC MAIN commitmail json YAML

- make sure that the utf16 string is padded with 0's where needed.
- since the utf16 string is not 0 terminated, pass the size of the string.

(christos)

2017-09-06 18:08:35 UTC MAIN commitmail json YAML

Clear TEX Remap Enable in SCTLR. U-Boot with CONFIG_ARMV8_SWITCH_TO_EL1
sets it since it is RES1 when TTBCR.EAE=1, but we are still using the
short descriptor format and don't currently support TEX remap.

ok skrll@

(jmcneill)

2017-09-06 17:15:54 UTC MAIN commitmail json YAML

Punctuation and macro improvements.

(wiz)

2017-09-06 17:12:58 UTC MAIN commitmail json YAML

New sentence, new line.

(wiz)

2017-09-06 17:11:41 UTC MAIN commitmail json YAML

2017-09-06 14:54:34 UTC MAIN commitmail json YAML

2017-09-06 14:54:01 UTC MAIN commitmail json YAML

Add sm(4) in evbarm INTEGRATOR_CP kernel

(ryoon)

2017-09-06 14:47:35 UTC MAIN commitmail json YAML

2017-09-06 14:47:00 UTC MAIN commitmail json YAML

Refer to wsmouse(4) instread of wscons(4)

(ryoon)

2017-09-06 14:43:50 UTC MAIN commitmail json YAML

2017-09-06 14:43:14 UTC MAIN commitmail json YAML

2017-09-06 14:40:26 UTC MAIN commitmail json YAML

2017-09-06 14:39:40 UTC MAIN commitmail json YAML

Add newline for easier reading

(ryoon)

2017-09-06 14:38:41 UTC MAIN commitmail json YAML

Add ALPS description

(ryoon)

2017-09-06 12:39:18 UTC MAIN commitmail json YAML

The last GDT slots are reserved for Xen, so use FIRST_RESERVED_GDT_BYTE
instead of MAXGDTSIZ for gdt_size.
Xen kernels should boot again.

(bouyer)

2017-09-06 11:51:33 UTC MAIN commitmail json YAML

Remove useless KASSERT - we can't assert !mutex_owned()

(skrll)

2017-09-06 11:08:54 UTC MAIN commitmail json YAML

Fixes a problem that some driver(e.g. acpitz(4) or coretemp(5)) which
use sysmon_envsys sleep waiting at "rndsrc" when "drvctl -d".
Don't call rnd_detach_source() in sme_remove_event() which is called
from sme_event_unregister_all(). Instead, call rnd_detach_source() in
sysmon_envsys_sensor_detach() and call sysmon_envsys_sensor_detach()
before sme_event_unregister_sensor(). Each sensor(envsys_data) has each
rnd_src, but some sme_events point to the same rnd_src in a sensor.
Calling rnd_detach_souce() twice with the same rnd_src brokes a reference
count in rnd_src. OK'd by pgoyette@.

(msaitoh)

2017-09-06 06:05:23 UTC MAIN commitmail json YAML

Don't print "nan" when there is no disk activity.

(mlelstv)

2017-09-06 03:10:09 UTC MAIN commitmail json YAML

downgrade some debug spam to aprint_debug() where it belongs

(macallan)

2017-09-05 18:30:46 UTC MAIN commitmail json YAML

PR/52522: Piotr Meyer: Don't NUL terminate the gpt label name.
XXX: pullup-8

(christos)

2017-09-05 18:07:59 UTC MAIN commitmail json YAML

For readline emulation, don't reset the tty to "sane" (cooked) mode if we
did not start this way. Also set and reset the tty on entry and exit from
readline() since this is what readline does.

(christos)

2017-09-05 17:21:09 UTC MAIN commitmail json YAML

first step to clean up & bus-spacification:
- use i2c addresses with the direction bit shifted out in iic_exec and when
  attaching drivers so things attaching to iic* have a chance of working
- add an empty i2c-devices prop_array_t to keep drivers we don't want from
  attaching to iic*
- printf -> DPRINTF / aprint_*
- usa mapiodev() for now to make this work on G5

(macallan)

2017-09-05 11:58:55 UTC MAIN commitmail json YAML

dhcp: Fix classless static routes

Assign the netwask correctly from the message.

Cherry-picked from upstream in
https://dev.marples.name/rDHC510c760cb24ef4b1b16cc14732c5ffe0fbb0d96d.

This fixes route assignments when running on Google Compute Engine,
which uses classless static routes.

(bsiegert)

2017-09-05 11:12:33 UTC MAIN commitmail json YAML

Revert changing the byte order of fi->fi_addr. It is already correct. From
Timo Buhrmester
XXX: pullup 8.

(christos)

2017-09-05 08:01:43 UTC MAIN commitmail json YAML

2017-09-05 07:07:15 UTC nick-nhusb commitmail json YAML

2017-09-05 07:06:30 UTC nick-nhusb commitmail json YAML

Remove unnecessary splnet from upl_attach

(skrll)

2017-09-05 07:04:17 UTC nick-nhusb commitmail json YAML

2017-09-05 07:01:12 UTC nick-nhusb commitmail json YAML

#ifdef DIAGNOSTIC -> KASSERT and add another KASSERT

(skrll)

2017-09-05 06:58:51 UTC nick-nhusb commitmail json YAML

2017-09-05 05:03:02 UTC MAIN commitmail json YAML

remove redundant checks against sc and sc->sc_dying.
check sc_dying in more places.

(mrg)

2017-09-04 20:47:59 UTC netbsd-8 commitmail json YAML

2017-09-04 20:41:28 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #257):
sys/compat/linux/arch/amd64/linux_machdep.c: 1.52
sys/arch/amd64/amd64/copy.S: 1.21-1.24
sys/arch/amd64/amd64/locore.S: 1.125
sys/arch/amd64/amd64/machdep.c: 1.256
Fix a bug in ucas_32 and ucas_64. There is a branch where they don't
initialize %rax.
--
style, reduces an incoming diff
00
Split comment, otherwise it is misleading. kcopy operates on kernel
memory, and must *not* be used with userland pages.
--
Move incq outside of the copy section. No functional change, reduces
my smap diff.
--
Remove dumb debug code and outdated comment.
--
Don't forget to clean l_md.md_flags, otherwise there may be MDL_COMPAT32,
in which case the kernel would always use iret (slower).

(snj)

2017-09-04 19:57:53 UTC MAIN commitmail json YAML

disable SIT, as we've been doing in -7 since this experimental feature
popped up. it was problematic and has been obsoleted in BIND 9.11.
ok christos@ reed@

(snj)

2017-09-04 18:01:28 UTC MAIN commitmail json YAML

Add console support.

(jmcneill)

2017-09-04 17:26:06 UTC MAIN commitmail json YAML

2017-09-04 16:51:11 UTC MAIN commitmail json YAML

2017-09-04 16:11:37 UTC netbsd-8 commitmail json YAML

2017-09-04 16:10:55 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1504):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:09:34 UTC netbsd-7 commitmail json YAML

2017-09-04 16:09:12 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1504):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:08:52 UTC netbsd-7-1 commitmail json YAML

2017-09-04 16:08:30 UTC netbsd-7-1 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1504):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:07:50 UTC netbsd-7-0 commitmail json YAML

2017-09-04 16:07:14 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1504):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:05:39 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1501):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:05:13 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1501):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:04:59 UTC netbsd-6-1 commitmail json YAML

2017-09-04 16:04:23 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1501):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 16:04:07 UTC netbsd-6-0 commitmail json YAML

2017-09-04 16:03:21 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #1501):
sys/arch/sparc64/sparc64/compat_13_machdep.c: revision 1.24
Apply only CCR. Otherwise userland could set PSTATE_PRIV in %pstate and get
kernel privileges on the hardware.
ok martin

(snj)

2017-09-04 14:48:09 UTC MAIN commitmail json YAML

Add Jason Bacon to developers list

(bacon)

2017-09-04 14:39:00 UTC MAIN commitmail json YAML

Set the correct device data size wdc_xsurf_softc instead of wdc_softc.

(phx)

2017-09-04 08:12:29 UTC MAIN commitmail json YAML

- Space, tab and newline change for consistency output.
- Print a type number for unknown HEST sub entry ID.

(msaitoh)

2017-09-04 08:08:41 UTC MAIN commitmail json YAML

- Calculate offset of a sub header correctly in acpi_handle_hest() to print
  all of sub entries in HEST correctly.
- Print a SpaceID number for unknown ID in acpi_print_gas().
- Use PRINTFLAG() in acpi_print_hest_notify().
- Use %u instead of %d for unsgined values in acpi_print_hest_generic().

(msaitoh)

2017-09-04 07:59:15 UTC MAIN commitmail json YAML

Fix calculation the offset of the Action Table in WDAT to print each
entries correctly.

(msaitoh)

2017-09-04 06:52:11 UTC netbsd-8 commitmail json YAML

2017-09-04 06:43:15 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by jakllsch in ticket #263):
sys/dev/usb/uhidev.c: revision 1.71
sys/dev/usb/ukbd.c: revision 1.137-1.138
Fix memory leak in report parsing error paths.
--
Support more varieties of USB keyboard reports.
The previous code asssumed reports would closely match the Bootstrap
Keyboard Protocol.  This is no longer always the case, particularly
with higher-end keyboards.
--
Always try to set USB HID devices into Report Protocol.  (Unless the
device is known to be quirky.)
Some of the most-widely-compatible methods of implementing USB Keyboard
NKRO depend on this Request to function as designed.
Issuing this Request is recommended by the HID 1.11 spec (7.2.6):
... "the host should not make any assumptions about the device's state
and should set the desired protocol whenever initializing a device."

(snj)

2017-09-04 06:40:37 UTC netbsd-8 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #262):
sys/dev/usb/usb.c: revision 1.166
Add a missing break that should have been included in revision 1.163.
Spotted by "sc dying" and reported on current-users

(snj)

2017-09-04 06:39:31 UTC netbsd-7 commitmail json YAML

2017-09-04 06:30:38 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by ginsbach in ticket #1496):
usr.sbin/syslogd/syslogd.c: revision 1.123
PR/51234: Onno van der Linden: syslogd sometimes incorrectly handles iso to
bsd time conversion

(snj)

2017-09-04 06:21:45 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by ginsbach in ticket #1495):
lib/libc/stdlib/merge.c: revision 1.15
PR lib/50316: Gracefully handle a zero number of members argument.
Taken from FreeBSD (which fixed this same issue long ago).

(snj)

2017-09-04 06:15:02 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by ginsbach in ticket #1494):
lib/libc/rpc/rpcb_st_xdr.c: revision 1.12
PR lib/15802: Shuuichirou Murata: Add missing xdr_rpcbs_rmtcalllist_ptr
There was a missing call to xdr_rpcbs_rmtcalllist_ptr in xdr_rpcb_stat.
This fixes issues with RPCBPROC_GETSTAT not working correctly with
systems that correctly implement the XDR encode/decode routine.

(snj)

2017-09-04 06:10:30 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #1492):
sys/dev/hdaudio/hdafg.c: revision 1.13 (s,hdaudio,pci/hdaudio,)
sys/dev/hdaudio/hdafg_dd.c: revision 1.2 (s,hdaudio,pci/hdaudio,)
put all the ELD debugging messages under #ifdef HDAFG_HDMI_DEBUG.
this silences a frequent and largely useless series of messages
in my dmesg.  ok jmcneill.

(snj)

2017-09-04 06:04:06 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #1491):
usr.bin/systat/main.c: revision 1.51
usr.bin/systat/systat.1: revision 1.47 via patch
add a basic "-b" option - that outputs one display and exits.
inspired by "top -b".  still requires a curses-capable output
without some fairly significant internal restructuring.

(snj)

2017-09-03 23:11:19 UTC MAIN commitmail json YAML

Remove references to BlueCore.
Enable XON/XOFF flowcontrol in SLIP layer depending on config response.
Send an acknowlegment packet on timeout/retry.
Compute tx{ack,seq} and rx{ack,seq} according to the specification.

(nat)

2017-09-03 22:54:12 UTC MAIN commitmail json YAML

Fix copyright error.

Ok plunky@.

(nat)

2017-09-03 13:59:17 UTC MAIN commitmail json YAML

Add 'console=fb' cmdline support.

(jmcneill)

2017-09-03 13:41:19 UTC MAIN commitmail json YAML

2017-09-03 13:29:55 UTC MAIN commitmail json YAML

Use a global double to stop GCC from optimizing the test away
Better diagnostic messages
More familiar test for 'even number'

(maya)