CVS commit: src/sys/netinet6

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 08:31:18 UTC 2018 Modified Files: src/sys/netinet6: ip6_input.c Log Message: Remove useless DIAGNOSTIC block, the caller already ensures the assumptions, and here we're not doing anything (it should be a panic rather

CVS commit: src/sys/netinet6

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 08:31:18 UTC 2018 Modified Files: src/sys/netinet6: ip6_input.c Log Message: Remove useless DIAGNOSTIC block, the caller already ensures the assumptions, and here we're not doing anything (it should be a panic rather

CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sun Apr 15 06:23:31 UTC 2018 Modified Files: src/sys/compat/common [pgoyette-compat]: uipc_syscalls_40.c src/sys/compat/sys [pgoyette-compat]: sockio.h Log Message: Make compat_ifconf() and compat_ifdatareq() static

CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sun Apr 15 06:23:31 UTC 2018 Modified Files: src/sys/compat/common [pgoyette-compat]: uipc_syscalls_40.c src/sys/compat/sys [pgoyette-compat]: sockio.h Log Message: Make compat_ifconf() and compat_ifdatareq() static

CVS commit: src/sys

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 07:35:49 UTC 2018 Modified Files: src/sys/kern: uipc_mbuf.c src/sys/netinet: ip_input.c src/sys/netinet6: ip6_input.c src/sys/netipsec: ipsec_input.c src/sys/sys: mbuf.h Log Message:

CVS commit: src/sys

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 07:35:49 UTC 2018 Modified Files: src/sys/kern: uipc_mbuf.c src/sys/netinet: ip_input.c src/sys/netinet6: ip6_input.c src/sys/netipsec: ipsec_input.c src/sys/sys: mbuf.h Log Message:

CVS commit: src/sbin/ping6

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 08:27:21 UTC 2018 Modified Files: src/sbin/ping6: ping6.c Log Message: typo in comment To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 src/sbin/ping6/ping6.c Please note that diffs are not public domain;

CVS commit: src/sbin/ping6

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 08:27:21 UTC 2018 Modified Files: src/sbin/ping6: ping6.c Log Message: typo in comment To generate a diff of this commit: cvs rdiff -u -r1.93 -r1.94 src/sbin/ping6/ping6.c Please note that diffs are not public domain;

CVS commit: src/sys/sys

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 17:26:39 UTC 2018 Modified Files: src/sys/sys: mbuf.h Log Message: clarify To generate a diff of this commit: cvs rdiff -u -r1.186 -r1.187 src/sys/sys/mbuf.h Please note that diffs are not public domain; they are

CVS commit: src/sys/sys

2018-04-15 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Sun Apr 15 17:26:39 UTC 2018 Modified Files: src/sys/sys: mbuf.h Log Message: clarify To generate a diff of this commit: cvs rdiff -u -r1.186 -r1.187 src/sys/sys/mbuf.h Please note that diffs are not public domain; they are

CVS commit: src/sys/arch/arm/sunxi

2018-04-15 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Sun Apr 15 18:24:52 UTC 2018 Modified Files: src/sys/arch/arm/sunxi: sunxi_mmc.c Log Message: Simplify interrupt handling by only enabling interrupts for events that we actually need. After we've consumed the event, mask the

CVS commit: src/sys/arch/arm/sunxi

2018-04-15 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Sun Apr 15 18:24:52 UTC 2018 Modified Files: src/sys/arch/arm/sunxi: sunxi_mmc.c Log Message: Simplify interrupt handling by only enabling interrupts for events that we actually need. After we've consumed the event, mask the

CVS commit: src/tools/gcc

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 15:13:37 UTC 2018 Modified Files: src/tools/gcc: mknative.common Log Message: fix the variable name for then non-gmake case. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16

CVS commit: src/tools/gcc

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 15:13:37 UTC 2018 Modified Files: src/tools/gcc: mknative.common Log Message: fix the variable name for then non-gmake case. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16

CVS commit: src

2018-04-15 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Apr 15 17:22:03 UTC 2018 Modified Files: src: UPDATING Log Message: Add a note about potential tools build failure due to yesterday's binutils sources juggling. To generate a diff of this commit: cvs rdiff -u -r1.292

CVS commit: src

2018-04-15 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Apr 15 17:22:03 UTC 2018 Modified Files: src: UPDATING Log Message: Add a note about potential tools build failure due to yesterday's binutils sources juggling. To generate a diff of this commit: cvs rdiff -u -r1.292

re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread matthew green
m...@netbsd.org writes: > __BEGIN_DECLS? was that accessible from userland? __BEGIN_DECLS in netbsd is entirely for userland -- it is an really for C++ and we don't do C++ in the kernel (please ignore the libunwind behind the curtain :-). .mrg.

Re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread maya
__BEGIN_DECLS? was that accessible from userland? On Sun, Apr 15, 2018 at 06:23:32AM +, Paul Goyette wrote: > Module Name: src > Committed By: pgoyette > Date: Sun Apr 15 06:23:31 UTC 2018 > > Modified Files: > src/sys/compat/common [pgoyette-compat]: uipc_syscalls_40.c >

CVS import: src/external/bsd/file/dist

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 19:32:50 UTC 2018 Update of /cvsroot/src/external/bsd/file/dist In directory ivanova.netbsd.org:/tmp/cvs-serv792 Log Message: 2018-04-15 14:52 Christos Zoulas * release 5.33 2018-02-24

CVS import: src/external/bsd/file/dist

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 19:32:50 UTC 2018 Update of /cvsroot/src/external/bsd/file/dist In directory ivanova.netbsd.org:/tmp/cvs-serv792 Log Message: 2018-04-15 14:52 Christos Zoulas * release 5.33 2018-02-24

CVS commit: src/share/mk

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 20:08:13 UTC 2018 Modified Files: src/share/mk: bsd.own.mk Log Message: switch x86 to binutils-2.30 To generate a diff of this commit: cvs rdiff -u -r1.1056 -r1.1057 src/share/mk/bsd.own.mk Please note that diffs

CVS commit: src/share/mk

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 20:08:13 UTC 2018 Modified Files: src/share/mk: bsd.own.mk Log Message: switch x86 to binutils-2.30 To generate a diff of this commit: cvs rdiff -u -r1.1056 -r1.1057 src/share/mk/bsd.own.mk Please note that diffs

Re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Christos Zoulas
In article , Paul Goyette wrote: >On Mon, 16 Apr 2018, matthew green wrote: > >> m...@netbsd.org writes: >>> __BEGIN_DECLS? was that accessible from userland? >> >> __BEGIN_DECLS in netbsd is entirely for userland -- it is

Re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
On Sun, 15 Apr 2018, Christos Zoulas wrote: On Apr 16, 6:07am, p...@whooppee.com (Paul Goyette) wrote: -- Subject: Re: CVS commit: [pgoyette-compat] src/sys/compat | Since your related changes on -current _do_ include the macros, I'll | just add them to my code to reduce the diffs. Or remove

CVS commit: src/distrib/sets/lists

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 19:47:30 UTC 2018 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: bump libmagic for file-5.33 To generate a diff of this commit: cvs rdiff -u -r1.833

CVS commit: src/doc

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 19:48:44 UTC 2018 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: update for file-5.33 To generate a diff of this commit: cvs rdiff -u -r1.1515 -r1.1516 src/doc/3RDPARTY cvs rdiff -u -r1.2380 -r1.2381

CVS commit: src/doc

2018-04-15 Thread Christos Zoulas
itoh 20180413] puc(4): Add Intel 300 series chipset support. [msaitoh 20180413] + file(1): Upgraded to 5.33. [christos 20180415]

CVS commit: src/distrib/sets/lists

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 19:47:30 UTC 2018 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: bump libmagic for file-5.33 To generate a diff of this commit: cvs rdiff -u -r1.833

CVS commit: src/external/gpl3/binutils

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 20:06:05 UTC 2018 Modified Files: src/external/gpl3/binutils/dist: config.guess config.sub configure configure.ac src/external/gpl3/binutils/dist/bfd: ChangeLog Makefile.am Makefile.in

CVS commit: src/external/gpl3/binutils

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 20:06:05 UTC 2018 Modified Files: src/external/gpl3/binutils/dist: config.guess config.sub configure configure.ac src/external/gpl3/binutils/dist/bfd: ChangeLog Makefile.am Makefile.in

Re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Christos Zoulas
On Apr 16, 6:07am, p...@whooppee.com (Paul Goyette) wrote: -- Subject: Re: CVS commit: [pgoyette-compat] src/sys/compat | Since your related changes on -current _do_ include the macros, I'll | just add them to my code to reduce the diffs. Or remove them from both :-) christos

CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib

2018-04-15 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Sun Apr 15 23:00:36 UTC 2018 Modified Files: src/crypto/external/bsd/netpgp/dist/src/lib: libnetpgp.3 Log Message: Break down explanation of netpgp_init to make it easier to extend. Document how the userid is obtained. To

CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib

2018-04-15 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Sun Apr 15 23:00:36 UTC 2018 Modified Files: src/crypto/external/bsd/netpgp/dist/src/lib: libnetpgp.3 Log Message: Break down explanation of netpgp_init to make it easier to extend. Document how the userid is obtained. To

re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
On Mon, 16 Apr 2018, matthew green wrote: m...@netbsd.org writes: __BEGIN_DECLS? was that accessible from userland? __BEGIN_DECLS in netbsd is entirely for userland -- it is an really for C++ and we don't do C++ in the kernel (please ignore the libunwind behind the curtain :-). I'm failing

CVS commit: src/tools

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 21:50:39 UTC 2018 Modified Files: src/tools: Makefile.gnuhost Log Message: do the bracket nesting only for clang for now. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/tools/Makefile.gnuhost

CVS commit: src/tools

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 21:50:39 UTC 2018 Modified Files: src/tools: Makefile.gnuhost Log Message: do the bracket nesting only for clang for now. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/tools/Makefile.gnuhost

CVS commit: src/sys/compat/sys

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sun Apr 15 22:13:36 UTC 2018 Modified Files: src/sys/compat/sys: sockio.h Log Message: Remove unnecessary __BEGIN_DECLS ... __END_DECLS at Christos's suggestion. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12

CVS commit: src/sys/compat/sys

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sun Apr 15 22:13:36 UTC 2018 Modified Files: src/sys/compat/sys: sockio.h Log Message: Remove unnecessary __BEGIN_DECLS ... __END_DECLS at Christos's suggestion. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12

CVS commit: src/external/bsd/file

2018-04-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Apr 15 19:45:32 UTC 2018 Modified Files: src/external/bsd/file/dist: ChangeLog Makefile.in aclocal.m4 compile config.guess config.h.in config.sub configure configure.ac depcomp install-sh missing

Re: CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
On Sun, 15 Apr 2018, Christos Zoulas wrote: In article , Paul Goyette wrote: On Mon, 16 Apr 2018, matthew green wrote: m...@netbsd.org writes: __BEGIN_DECLS? was that accessible from userland? __BEGIN_DECLS in

CVS commit: [pgoyette-compat] src/crypto/external/bsd/openssh/dist

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Mon Apr 16 02:03:04 UTC 2018 Added Files: src/crypto/external/bsd/openssh/dist [pgoyette-compat]: xmss_wots.c Log Message: Missed in previous 'sync with HEAD' To generate a diff of this commit: cvs rdiff -u -r0 -r1.2.2.2

CVS commit: [pgoyette-compat] src/crypto/external/bsd/openssh/dist

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Mon Apr 16 02:03:04 UTC 2018 Added Files: src/crypto/external/bsd/openssh/dist [pgoyette-compat]: xmss_wots.c Log Message: Missed in previous 'sync with HEAD' To generate a diff of this commit: cvs rdiff -u -r0 -r1.2.2.2

CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Mon Apr 16 03:41:34 UTC 2018 Modified Files: src/sys/compat/common [pgoyette-compat]: compat_40_mod.c compat_50_mod.c compat_mod.h if_40.h uipc_syscalls_40.c uipc_syscalls_50.c src/sys/compat/sys

CVS commit: [pgoyette-compat] src/sys/compat

2018-04-15 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Mon Apr 16 03:41:34 UTC 2018 Modified Files: src/sys/compat/common [pgoyette-compat]: compat_40_mod.c compat_50_mod.c compat_mod.h if_40.h uipc_syscalls_40.c uipc_syscalls_50.c src/sys/compat/sys

CVS commit: src/sys/arch/x86/pci

2018-04-15 Thread NONAKA Kimihiro
Module Name:src Committed By: nonaka Date: Mon Apr 16 03:21:43 UTC 2018 Modified Files: src/sys/arch/x86/pci: if_vmx.c Log Message: vmx(4): Fix calculation of interface statistics counter. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22

CVS commit: src/sys/arch/x86/pci

2018-04-15 Thread NONAKA Kimihiro
Module Name:src Committed By: nonaka Date: Mon Apr 16 03:21:43 UTC 2018 Modified Files: src/sys/arch/x86/pci: if_vmx.c Log Message: vmx(4): Fix calculation of interface statistics counter. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22