CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs

2018-09-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Sep  7 02:25:40 UTC 2018

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_acl.c

Log Message:
handle clang stupidity


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs

2018-09-06 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Sep  7 02:25:40 UTC 2018

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_acl.c

Log Message:
handle clang stupidity


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c
diff -u src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c:1.4 src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c:1.5
--- src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c:1.4	Mon May 28 17:05:07 2018
+++ src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_acl.c	Thu Sep  6 22:25:40 2018
@@ -2359,6 +2359,7 @@ zfs_zaccess(znode_t *zp, int mode, int f
 	 */
 	if (zp->z_pflags & ZFS_XATTR)
 		return (0);
+	xzp = NULL;	// XXX: hello clang is_attr is false here.
 #else
 	/*
 	 * If attribute then validate against base file



CVS commit: src/sys/dev/fdt

2018-09-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Sep  6 22:54:05 UTC 2018

Modified Files:
src/sys/dev/fdt: fdt_intr.c fdtvar.h

Log Message:
Add fdtbus_intr_establish_raw and fdtbus_intr_str_raw, for establishing
interrupts directly using an interrupt controller's phandle and specifier.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/fdt/fdt_intr.c
cvs rdiff -u -r1.38 -r1.39 src/sys/dev/fdt/fdtvar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/fdt/fdt_intr.c
diff -u src/sys/dev/fdt/fdt_intr.c:1.17 src/sys/dev/fdt/fdt_intr.c:1.18
--- src/sys/dev/fdt/fdt_intr.c:1.17	Sun Jul 15 16:59:16 2018
+++ src/sys/dev/fdt/fdt_intr.c	Thu Sep  6 22:54:05 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: fdt_intr.c,v 1.17 2018/07/15 16:59:16 jmcneill Exp $ */
+/* $NetBSD: fdt_intr.c,v 1.18 2018/09/06 22:54:05 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2015-2018 Jared McNeill 
@@ -27,7 +27,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: fdt_intr.c,v 1.17 2018/07/15 16:59:16 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fdt_intr.c,v 1.18 2018/09/06 22:54:05 jmcneill Exp $");
 
 #include 
 #include 
@@ -134,16 +134,25 @@ void *
 fdtbus_intr_establish(int phandle, u_int index, int ipl, int flags,
 int (*func)(void *), void *arg)
 {
-	struct fdtbus_interrupt_controller *ic;
-	struct fdtbus_interrupt_cookie *c = NULL;
 	const u_int *specifier;
 	int ihandle;
-	void *ih;
 
 	specifier = get_specifier_by_index(phandle, index, );
 	if (specifier == NULL)
 		return NULL;
 
+	return fdtbus_intr_establish_raw(ihandle, specifier, ipl,
+	flags, func, arg);
+}
+
+void *
+fdtbus_intr_establish_raw(int ihandle, const u_int *specifier, int ipl,
+int flags, int (*func)(void *), void *arg)
+{
+	struct fdtbus_interrupt_controller *ic;
+	struct fdtbus_interrupt_cookie *c;
+	void *ih;
+
 	ic = fdtbus_get_interrupt_controller(ihandle);
 	if (ic == NULL)
 		return NULL;
@@ -184,11 +193,20 @@ fdtbus_intr_disestablish(int phandle, vo
 bool
 fdtbus_intr_str(int phandle, u_int index, char *buf, size_t buflen)
 {
-	struct fdtbus_interrupt_controller *ic;
 	const u_int *specifier;
 	int ihandle;
 
 	specifier = get_specifier_by_index(phandle, index, );
+	if (specifier == NULL)
+		return false;
+
+	return fdtbus_intr_str_raw(ihandle, specifier, buf, buflen);
+}
+
+bool
+fdtbus_intr_str_raw(int ihandle, const u_int *specifier, char *buf, size_t buflen)
+{
+	struct fdtbus_interrupt_controller *ic;
 
 	ic = fdtbus_get_interrupt_controller(ihandle);
 	if (ic == NULL)

Index: src/sys/dev/fdt/fdtvar.h
diff -u src/sys/dev/fdt/fdtvar.h:1.38 src/sys/dev/fdt/fdtvar.h:1.39
--- src/sys/dev/fdt/fdtvar.h:1.38	Sun Jul  1 18:16:40 2018
+++ src/sys/dev/fdt/fdtvar.h	Thu Sep  6 22:54:05 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: fdtvar.h,v 1.38 2018/07/01 18:16:40 jmcneill Exp $ */
+/* $NetBSD: fdtvar.h,v 1.39 2018/09/06 22:54:05 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2015 Jared D. McNeill 
@@ -271,8 +271,11 @@ int		fdtbus_get_phandle_from_native(int)
 i2c_tag_t	fdtbus_get_i2c_tag(int);
 void *		fdtbus_intr_establish(int, u_int, int, int,
 		int (*func)(void *), void *arg);
+void *		fdtbus_intr_establish_raw(int, const u_int *, int, int,
+		int (*func)(void *), void *arg);
 void		fdtbus_intr_disestablish(int, void *);
 bool		fdtbus_intr_str(int, u_int, char *, size_t);
+bool		fdtbus_intr_str_raw(int, const u_int *, char *, size_t);
 struct fdtbus_gpio_pin *fdtbus_gpio_acquire(int, const char *, int);
 struct fdtbus_gpio_pin *fdtbus_gpio_acquire_index(int, const char *, int, int);
 void		fdtbus_gpio_release(struct fdtbus_gpio_pin *);



CVS commit: src/sys/dev/fdt

2018-09-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Sep  6 22:54:05 UTC 2018

Modified Files:
src/sys/dev/fdt: fdt_intr.c fdtvar.h

Log Message:
Add fdtbus_intr_establish_raw and fdtbus_intr_str_raw, for establishing
interrupts directly using an interrupt controller's phandle and specifier.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/fdt/fdt_intr.c
cvs rdiff -u -r1.38 -r1.39 src/sys/dev/fdt/fdtvar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2018-09-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Sep  6 22:30:34 UTC 2018

Modified Files:
src/sys/arch/arm/include: pci_machdep.h

Log Message:
Define _PCI_HAVE_DMA64 for aarch64


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/include/pci_machdep.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/include/pci_machdep.h
diff -u src/sys/arch/arm/include/pci_machdep.h:1.12 src/sys/arch/arm/include/pci_machdep.h:1.13
--- src/sys/arch/arm/include/pci_machdep.h:1.12	Wed Apr 19 12:58:59 2017
+++ src/sys/arch/arm/include/pci_machdep.h	Thu Sep  6 22:30:34 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_machdep.h,v 1.12 2017/04/19 12:58:59 jmcneill Exp $	*/
+/*	$NetBSD: pci_machdep.h,v 1.13 2018/09/06 22:30:34 jmcneill Exp $	*/
 
 /*
  * Modified for arm32 by Mark Brinicombe
@@ -37,6 +37,10 @@
  * Machine-specific definitions for PCI autoconfiguration.
  */
 
+#ifdef __aarch64__
+#define _PCI_HAVE_DMA64
+#endif
+
 #include 
 
 /*



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

2018-09-06 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Thu Sep  6 22:30:34 UTC 2018

Modified Files:
src/sys/arch/arm/include: pci_machdep.h

Log Message:
Define _PCI_HAVE_DMA64 for aarch64


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/include/pci_machdep.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 21:37:43 UTC 2018

Modified Files:
src/sys/compat/common [pgoyette-compat]: kern_mod_80.c

Log Message:
Remove editor glitch


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/compat/common/kern_mod_80.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/common/kern_mod_80.c
diff -u src/sys/compat/common/kern_mod_80.c:1.1.2.2 src/sys/compat/common/kern_mod_80.c:1.1.2.3
--- src/sys/compat/common/kern_mod_80.c:1.1.2.2	Thu Sep  6 21:22:05 2018
+++ src/sys/compat/common/kern_mod_80.c	Thu Sep  6 21:37:43 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_mod_80.c,v 1.1.2.2 2018/09/06 21:22:05 pgoyette Exp $	*/
+/*	$NetBSD: kern_mod_80.c,v 1.1.2.3 2018/09/06 21:37:43 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: kern_mod_80.c,v 1.1.2.2 2018/09/06 21:22:05 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_mod_80.c,v 1.1.2.3 2018/09/06 21:37:43 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_modular.h"
@@ -161,7 +161,6 @@ compat_80_modstat(int cmd, struct iovec 
 		if (mod->mod_kobj != NULL && stataddr) {
 			kobj_stat(mod->mod_kobj, , );
 			oms->oms_addr = addr;
-A
 			oms->oms_size = size;
 		}
 		oms->oms_class = mi->mi_class;



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

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 21:37:43 UTC 2018

Modified Files:
src/sys/compat/common [pgoyette-compat]: kern_mod_80.c

Log Message:
Remove editor glitch


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/compat/common/kern_mod_80.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 21:22:05 UTC 2018

Modified Files:
src/sys/compat/common [pgoyette-compat]: kern_mod_80.c

Log Message:
Catch up to recent change on head:  min() -> uimin()


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/compat/common/kern_mod_80.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/common/kern_mod_80.c
diff -u src/sys/compat/common/kern_mod_80.c:1.1.2.1 src/sys/compat/common/kern_mod_80.c:1.1.2.2
--- src/sys/compat/common/kern_mod_80.c:1.1.2.1	Tue Apr  3 08:29:44 2018
+++ src/sys/compat/common/kern_mod_80.c	Thu Sep  6 21:22:05 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_mod_80.c,v 1.1.2.1 2018/04/03 08:29:44 pgoyette Exp $	*/
+/*	$NetBSD: kern_mod_80.c,v 1.1.2.2 2018/09/06 21:22:05 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: kern_mod_80.c,v 1.1.2.1 2018/04/03 08:29:44 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_mod_80.c,v 1.1.2.2 2018/09/06 21:22:05 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_modular.h"
@@ -161,6 +161,7 @@ compat_80_modstat(int cmd, struct iovec 
 		if (mod->mod_kobj != NULL && stataddr) {
 			kobj_stat(mod->mod_kobj, , );
 			oms->oms_addr = addr;
+A
 			oms->oms_size = size;
 		}
 		oms->oms_class = mi->mi_class;
@@ -178,7 +179,7 @@ compat_80_modstat(int cmd, struct iovec 
 		}
 	}
 	kernconfig_unlock();
-	error = copyout(omso, iov->iov_base, min(omslen, iov->iov_len));
+	error = copyout(omso, iov->iov_base, uimin(omslen, iov->iov_len));
 	kmem_free(omso, omslen);
 	if (error == 0) {
 		iov->iov_len = omslen;



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

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 21:22:05 UTC 2018

Modified Files:
src/sys/compat/common [pgoyette-compat]: kern_mod_80.c

Log Message:
Catch up to recent change on head:  min() -> uimin()


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/compat/common/kern_mod_80.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 19:19:44 UTC 2018

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/comp: mi
src/etc/mtree: NetBSD.dist.base
src/sys: Makefile
Removed Files:
src/sys/netkey: Makefile keysock.h

Log Message:
Remove netkey/.


To generate a diff of this commit:
cvs rdiff -u -r1.1184 -r1.1185 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.2227 -r1.2228 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.172 -r1.173 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.81 -r1.82 src/sys/Makefile
cvs rdiff -u -r1.5 -r0 src/sys/netkey/Makefile
cvs rdiff -u -r1.17 -r0 src/sys/netkey/keysock.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/base/mi
diff -u src/distrib/sets/lists/base/mi:1.1184 src/distrib/sets/lists/base/mi:1.1185
--- src/distrib/sets/lists/base/mi:1.1184	Thu Sep  6 06:41:59 2018
+++ src/distrib/sets/lists/base/mi	Thu Sep  6 19:19:44 2018
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1184 2018/09/06 06:41:59 maxv Exp $
+# $NetBSD: mi,v 1.1185 2018/09/06 19:19:44 maxv Exp $
 #
 # Note:	Don't delete entries from here - mark them as "obsolete" instead,
 #	unless otherwise stated below.
@@ -1215,7 +1215,7 @@
 ./usr/include/netipsecbase-c-usr
 ./usr/include/netisdnbase-c-usr
 ./usr/include/netisobase-obsolete		obsolete
-./usr/include/netkeybase-c-usr
+./usr/include/netkeybase-obsolete		obsolete
 ./usr/include/netmplsbase-c-usr
 ./usr/include/netnatmbase-obsolete		obsolete
 ./usr/include/netnsbase-obsolete		obsolete

Index: src/distrib/sets/lists/comp/mi
diff -u src/distrib/sets/lists/comp/mi:1.2227 src/distrib/sets/lists/comp/mi:1.2228
--- src/distrib/sets/lists/comp/mi:1.2227	Thu Sep  6 19:07:13 2018
+++ src/distrib/sets/lists/comp/mi	Thu Sep  6 19:19:44 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: mi,v 1.2227 2018/09/06 19:07:13 maxv Exp $
+#	$NetBSD: mi,v 1.2228 2018/09/06 19:19:44 maxv Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 ./etc/mtree/set.compcomp-sys-root
@@ -2510,7 +2510,7 @@
 ./usr/include/netkey/key_debug.h		comp-obsolete		obsolete
 ./usr/include/netkey/key_var.h			comp-obsolete		obsolete
 ./usr/include/netkey/keydb.h			comp-obsolete		obsolete
-./usr/include/netkey/keysock.h			comp-c-include
+./usr/include/netkey/keysock.h			comp-obsolete		obsolete
 ./usr/include/netkey/keyv2.h			comp-obsolete		obsolete
 ./usr/include/netmpls/mpls.h			comp-c-include
 ./usr/include/netnatm/natm.h			comp-obsolete		obsolete

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.172 src/etc/mtree/NetBSD.dist.base:1.173
--- src/etc/mtree/NetBSD.dist.base:1.172	Thu Sep  6 09:31:06 2018
+++ src/etc/mtree/NetBSD.dist.base	Thu Sep  6 19:19:44 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.172 2018/09/06 09:31:06 maxv Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.173 2018/09/06 19:19:44 maxv Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -220,7 +220,6 @@
 ./usr/include/netinet6
 ./usr/include/netipsec
 ./usr/include/netisdn
-./usr/include/netkey
 ./usr/include/netpgp
 ./usr/include/netsmb
 ./usr/include/nfs

Index: src/sys/Makefile
diff -u src/sys/Makefile:1.81 src/sys/Makefile:1.82
--- src/sys/Makefile:1.81	Thu Sep  6 09:13:42 2018
+++ src/sys/Makefile	Thu Sep  6 19:19:44 2018
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.81 2018/09/06 09:13:42 martin Exp $
+#	$NetBSD: Makefile,v 1.82 2018/09/06 19:19:44 maxv Exp $
 
 .include 
 
 SUBDIR=	altq arch compat dev fs miscfs \
 	net net80211 netatalk netbt netcan netipsec netinet netinet6 \
-netisdn netkey netmpls netsmb \
+netisdn netmpls netsmb \
 	nfs opencrypto sys ufs uvm
 
 # interrupt implementation depends on the kernel within the port



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 19:19:44 UTC 2018

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/comp: mi
src/etc/mtree: NetBSD.dist.base
src/sys: Makefile
Removed Files:
src/sys/netkey: Makefile keysock.h

Log Message:
Remove netkey/.


To generate a diff of this commit:
cvs rdiff -u -r1.1184 -r1.1185 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.2227 -r1.2228 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.172 -r1.173 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.81 -r1.82 src/sys/Makefile
cvs rdiff -u -r1.5 -r0 src/sys/netkey/Makefile
cvs rdiff -u -r1.17 -r0 src/sys/netkey/keysock.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 19:07:13 UTC 2018

Modified Files:
src/distrib/sets/lists/comp: mi
src/sys/netinet6: Makefile
Removed Files:
src/sys/netinet6: ipsec.h

Log Message:
Remove netinet6/ipsec.h.


To generate a diff of this commit:
cvs rdiff -u -r1.2226 -r1.2227 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.9 -r1.10 src/sys/netinet6/Makefile
cvs rdiff -u -r1.54 -r0 src/sys/netinet6/ipsec.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/comp/mi
diff -u src/distrib/sets/lists/comp/mi:1.2226 src/distrib/sets/lists/comp/mi:1.2227
--- src/distrib/sets/lists/comp/mi:1.2226	Thu Sep  6 06:41:59 2018
+++ src/distrib/sets/lists/comp/mi	Thu Sep  6 19:07:13 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: mi,v 1.2226 2018/09/06 06:41:59 maxv Exp $
+#	$NetBSD: mi,v 1.2227 2018/09/06 19:07:13 maxv Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 ./etc/mtree/set.compcomp-sys-root
@@ -2453,7 +2453,7 @@
 ./usr/include/netinet6/ip6_var.h		comp-c-include
 ./usr/include/netinet6/ip6protosw.h		comp-c-include
 ./usr/include/netinet6/ipcomp.h			comp-obsolete		obsolete
-./usr/include/netinet6/ipsec.h			comp-c-include
+./usr/include/netinet6/ipsec.h			comp-obsolete		obsolete
 ./usr/include/netinet6/mld6_var.h		comp-c-include
 ./usr/include/netinet6/nd6.h			comp-c-include
 ./usr/include/netinet6/pim6.h			comp-c-include

Index: src/sys/netinet6/Makefile
diff -u src/sys/netinet6/Makefile:1.9 src/sys/netinet6/Makefile:1.10
--- src/sys/netinet6/Makefile:1.9	Thu Feb 16 08:12:44 2017
+++ src/sys/netinet6/Makefile	Thu Sep  6 19:07:13 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.9 2017/02/16 08:12:44 knakahara Exp $
+#	$NetBSD: Makefile,v 1.10 2018/09/06 19:07:13 maxv Exp $
 
 INCSDIR= /usr/include/netinet6
 
@@ -6,6 +6,5 @@ INCS=	in6.h in6_gif.h in6_l2tp.h in6_ifa
 	in6_var.h ip6_mroute.h ip6_var.h ip6protosw.h \
 	mld6_var.h nd6.h pim6.h pim6_var.h \
 	raw_ip6.h udp6.h udp6_var.h
-INCS+=	ipsec.h
 
 .include 



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 19:07:13 UTC 2018

Modified Files:
src/distrib/sets/lists/comp: mi
src/sys/netinet6: Makefile
Removed Files:
src/sys/netinet6: ipsec.h

Log Message:
Remove netinet6/ipsec.h.


To generate a diff of this commit:
cvs rdiff -u -r1.2226 -r1.2227 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.9 -r1.10 src/sys/netinet6/Makefile
cvs rdiff -u -r1.54 -r0 src/sys/netinet6/ipsec.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists/man

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 14:08:24 UTC 2018

Modified Files:
src/distrib/sets/lists/man: mi

Log Message:
en leftover


To generate a diff of this commit:
cvs rdiff -u -r1.1615 -r1.1616 src/distrib/sets/lists/man/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists/man

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 14:08:24 UTC 2018

Modified Files:
src/distrib/sets/lists/man: mi

Log Message:
en leftover


To generate a diff of this commit:
cvs rdiff -u -r1.1615 -r1.1616 src/distrib/sets/lists/man/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/man/mi
diff -u src/distrib/sets/lists/man/mi:1.1615 src/distrib/sets/lists/man/mi:1.1616
--- src/distrib/sets/lists/man/mi:1.1615	Thu Sep  6 12:05:23 2018
+++ src/distrib/sets/lists/man/mi	Thu Sep  6 14:08:24 2018
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1615 2018/09/06 12:05:23 kre Exp $
+# $NetBSD: mi,v 1.1616 2018/09/06 14:08:24 maxv Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -1057,7 +1057,7 @@
 ./usr/share/man/cat4/emips/enic.0		man-sys-catman		.cat
 ./usr/share/man/cat4/emips/intro.0		man-sys-catman		.cat
 ./usr/share/man/cat4/emuxki.0			man-sys-catman		.cat
-./usr/share/man/cat4/en.0			man-sys-catman		.cat
+./usr/share/man/cat4/en.0			man-obsolete		obsolete
 ./usr/share/man/cat4/envsys.0			man-sys-catman		.cat
 ./usr/share/man/cat4/ep.0			man-sys-catman		.cat
 ./usr/share/man/cat4/epic.0			man-sys-catman		.cat



CVS commit: src/distrib/sets/lists/man

2018-09-06 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Thu Sep  6 12:05:23 UTC 2018

Modified Files:
src/distrib/sets/lists/man: mi

Log Message:
When a man page becomes obsolete, its html form does as well.
Remove en.html (that is, mark it obsolete).


To generate a diff of this commit:
cvs rdiff -u -r1.1614 -r1.1615 src/distrib/sets/lists/man/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/man/mi
diff -u src/distrib/sets/lists/man/mi:1.1614 src/distrib/sets/lists/man/mi:1.1615
--- src/distrib/sets/lists/man/mi:1.1614	Thu Sep  6 06:41:59 2018
+++ src/distrib/sets/lists/man/mi	Thu Sep  6 12:05:23 2018
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1614 2018/09/06 06:41:59 maxv Exp $
+# $NetBSD: mi,v 1.1615 2018/09/06 12:05:23 kre Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -4208,7 +4208,7 @@
 ./usr/share/man/html4/emips/enic.html		man-sys-htmlman		html
 ./usr/share/man/html4/emips/intro.html		man-sys-htmlman		html
 ./usr/share/man/html4/emuxki.html		man-sys-htmlman		html
-./usr/share/man/html4/en.html			man-sys-htmlman		html
+./usr/share/man/html4/en.html			man-obsolete		obsolete
 ./usr/share/man/html4/envsys.html		man-sys-htmlman		html
 ./usr/share/man/html4/ep.html			man-sys-htmlman		html
 ./usr/share/man/html4/epic.html			man-sys-htmlman		html



CVS commit: src/distrib/sets/lists/man

2018-09-06 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Thu Sep  6 12:05:23 UTC 2018

Modified Files:
src/distrib/sets/lists/man: mi

Log Message:
When a man page becomes obsolete, its html form does as well.
Remove en.html (that is, mark it obsolete).


To generate a diff of this commit:
cvs rdiff -u -r1.1614 -r1.1615 src/distrib/sets/lists/man/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 11:12:14 UTC 2018

Modified Files:
src/external/bsd/cron/dist [pgoyette-compat]: entry.c

Log Message:
Resolve conflict, remove marker.  Not sure how this snuck past me.


To generate a diff of this commit:
cvs rdiff -u -r1.7.14.2 -r1.7.14.3 src/external/bsd/cron/dist/entry.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/cron/dist/entry.c
diff -u src/external/bsd/cron/dist/entry.c:1.7.14.2 src/external/bsd/cron/dist/entry.c:1.7.14.3
--- src/external/bsd/cron/dist/entry.c:1.7.14.2	Thu Sep  6 06:51:44 2018
+++ src/external/bsd/cron/dist/entry.c	Thu Sep  6 11:12:14 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: entry.c,v 1.7.14.2 2018/09/06 06:51:44 pgoyette Exp $	*/
+/*	$NetBSD: entry.c,v 1.7.14.3 2018/09/06 11:12:14 pgoyette Exp $	*/
 
 /*
  * Copyright 1988,1990,1993,1994 by Paul Vixie
@@ -26,11 +26,7 @@
 #if 0
 static char rcsid[] = "Id: entry.c,v 1.17 2004/01/23 18:56:42 vixie Exp";
 #else
-<<< entry.c
-__RCSID("$NetBSD: entry.c,v 1.7.14.2 2018/09/06 06:51:44 pgoyette Exp $");
-===
-__RCSID("$NetBSD: entry.c,v 1.7.14.2 2018/09/06 06:51:44 pgoyette Exp $");
->>> 1.10
+__RCSID("$NetBSD: entry.c,v 1.7.14.3 2018/09/06 11:12:14 pgoyette Exp $");
 #endif
 #endif
 



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

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 11:12:14 UTC 2018

Modified Files:
src/external/bsd/cron/dist [pgoyette-compat]: entry.c

Log Message:
Resolve conflict, remove marker.  Not sure how this snuck past me.


To generate a diff of this commit:
cvs rdiff -u -r1.7.14.2 -r1.7.14.3 src/external/bsd/cron/dist/entry.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man7

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 10:09:29 UTC 2018

Modified Files:
src/share/man/man7: hier.7 sysctl.7

Log Message:
more netkey->netipsec


To generate a diff of this commit:
cvs rdiff -u -r1.132 -r1.133 src/share/man/man7/hier.7
cvs rdiff -u -r1.130 -r1.131 src/share/man/man7/sysctl.7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man7

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 10:09:29 UTC 2018

Modified Files:
src/share/man/man7: hier.7 sysctl.7

Log Message:
more netkey->netipsec


To generate a diff of this commit:
cvs rdiff -u -r1.132 -r1.133 src/share/man/man7/hier.7
cvs rdiff -u -r1.130 -r1.131 src/share/man/man7/sysctl.7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man7/hier.7
diff -u src/share/man/man7/hier.7:1.132 src/share/man/man7/hier.7:1.133
--- src/share/man/man7/hier.7:1.132	Thu Sep  6 09:44:09 2018
+++ src/share/man/man7/hier.7	Thu Sep  6 10:09:29 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: hier.7,v 1.132 2018/09/06 09:44:09 maxv Exp $
+.\"	$NetBSD: hier.7,v 1.133 2018/09/06 10:09:29 maxv Exp $
 .\"
 .\" Copyright (c) 1990, 1993, 1994
 .\"	The Regents of the University of California.  All rights reserved.
@@ -1013,7 +1013,7 @@ AppleTalk networking support.
 IP networking support.
 .It Pa netinet6/
 IPv6 networking support.
-.It Pa netkey/
+.It Pa netipsec/
 Key database for IPsec networking support.
 .It Pa nfs/
 NFS (network file system) support, both client and server.

Index: src/share/man/man7/sysctl.7
diff -u src/share/man/man7/sysctl.7:1.130 src/share/man/man7/sysctl.7:1.131
--- src/share/man/man7/sysctl.7:1.130	Sun Sep  2 17:21:28 2018
+++ src/share/man/man7/sysctl.7	Thu Sep  6 10:09:29 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: sysctl.7,v 1.130 2018/09/02 17:21:28 maxv Exp $
+.\"	$NetBSD: sysctl.7,v 1.131 2018/09/06 10:09:29 maxv Exp $
 .\"
 .\" Copyright (c) 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -29,7 +29,7 @@
 .\"
 .\"	@(#)sysctl.3	8.4 (Berkeley) 5/9/95
 .\"
-.Dd September 2, 2018
+.Dd September 6, 2018
 .Dt SYSCTL 7
 .Os
 .Sh NAME
@@ -2046,7 +2046,7 @@ The variables are as follows:
 .It Li debug
 Turn on debugging message from within the kernel.
 The value is a bitmap, as defined in
-.In netkey/key_debug.h .
+.In netipsec/key_debug.h .
 .It Li enabled
 Control processing of IPsec control messages.
 .Bl -tag -width indent



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:54:36 UTC 2018

Modified Files:
src/crypto/dist/ipsec-tools/src/libipsec: libpfkey.h
src/crypto/dist/ipsec-tools/src/racoon: strnames.c
src/lib/libipsec: config.h

Log Message:
Remove dead references to netinet6/ipsec.h.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 \
src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h
cvs rdiff -u -r1.10 -r1.11 src/crypto/dist/ipsec-tools/src/racoon/strnames.c
cvs rdiff -u -r1.8 -r1.9 src/lib/libipsec/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h
diff -u src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h:1.20 src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h:1.21
--- src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h:1.20	Mon May 28 20:45:38 2018
+++ src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h	Thu Sep  6 09:54:36 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: libpfkey.h,v 1.20 2018/05/28 20:45:38 maxv Exp $	*/
+/*	$NetBSD: libpfkey.h,v 1.21 2018/09/06 09:54:36 maxv Exp $	*/
 
 /* Id: libpfkey.h,v 1.13 2005/12/04 20:26:43 manubsd Exp */
 
@@ -53,7 +53,6 @@ extern void pfkey_spdump_withports(struc
 struct sockaddr;
 struct sadb_alg;
 
-/* Accomodate different prototypes in  */
 #include 
 #include PATH_IPSEC_H
 

Index: src/crypto/dist/ipsec-tools/src/racoon/strnames.c
diff -u src/crypto/dist/ipsec-tools/src/racoon/strnames.c:1.10 src/crypto/dist/ipsec-tools/src/racoon/strnames.c:1.11
--- src/crypto/dist/ipsec-tools/src/racoon/strnames.c:1.10	Thu Nov 29 15:31:25 2012
+++ src/crypto/dist/ipsec-tools/src/racoon/strnames.c	Thu Sep  6 09:54:36 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: strnames.c,v 1.10 2012/11/29 15:31:25 vanhu Exp $	*/
+/*	$NetBSD: strnames.c,v 1.11 2018/09/06 09:54:36 maxv Exp $	*/
 
 /*	$KAME: strnames.c,v 1.25 2003/11/13 10:53:26 itojun Exp $	*/
 
@@ -812,7 +812,6 @@ s_oakley_attr_v(type, val)
 	return num2str(val);
 }
 
-/* netinet6/ipsec.h */
 static struct ksmap name_ipsec_level[] = {
 { IPSEC_LEVEL_USE,	"use",		NULL },
 { IPSEC_LEVEL_REQUIRE,	"require",	NULL },

Index: src/lib/libipsec/config.h
diff -u src/lib/libipsec/config.h:1.8 src/lib/libipsec/config.h:1.9
--- src/lib/libipsec/config.h:1.8	Thu May 31 07:16:16 2018
+++ src/lib/libipsec/config.h	Thu Sep  6 09:54:36 2018
@@ -91,9 +91,6 @@
 /* Define to 1 if you have the  header file. */
 #define HAVE_MEMORY_H 1
 
-/* Use  */
-#define HAVE_NETINET6_IPSEC 
-
 /* Define to 1 if you have the  header file. */
 #define HAVE_OPENSSL_AES_H 1
 



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:54:36 UTC 2018

Modified Files:
src/crypto/dist/ipsec-tools/src/libipsec: libpfkey.h
src/crypto/dist/ipsec-tools/src/racoon: strnames.c
src/lib/libipsec: config.h

Log Message:
Remove dead references to netinet6/ipsec.h.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 \
src/crypto/dist/ipsec-tools/src/libipsec/libpfkey.h
cvs rdiff -u -r1.10 -r1.11 src/crypto/dist/ipsec-tools/src/racoon/strnames.c
cvs rdiff -u -r1.8 -r1.9 src/lib/libipsec/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:47:30 UTC 2018

Modified Files:
src/share/man/man4: pci.4 sbus.4

Log Message:
Remove lurking references to Midway. These lists don't seem to be really
up-to-date, by the way.


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/share/man/man4/pci.4
cvs rdiff -u -r1.9 -r1.10 src/share/man/man4/sbus.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/pci.4
diff -u src/share/man/man4/pci.4:1.97 src/share/man/man4/pci.4:1.98
--- src/share/man/man4/pci.4:1.97	Mon Jul  3 21:30:58 2017
+++ src/share/man/man4/pci.4	Thu Sep  6 09:47:30 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: pci.4,v 1.97 2017/07/03 21:30:58 wiz Exp $
+.\"	$NetBSD: pci.4,v 1.98 2018/09/06 09:47:30 maxv Exp $
 .\"
 .\" Copyright (c) 1997 Jason R. Thorpe.  All rights reserved.
 .\" Copyright (c) 1997 Jonathan Stone
@@ -29,7 +29,7 @@
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd August 27, 2015
+.Dd September 6, 2018
 .Dt PCI 4
 .Os
 .Sh NAME
@@ -226,8 +226,6 @@ DE450, and DE500, and Znyx, SMC, Cogent/
 multi-port
 .Tn Ethernet
 interfaces.
-.It en
-Midway-based Efficient Networks Inc. and Adaptec ATM interfaces.
 .It ep
 3Com 3c590, 3c595, 3c900, and 3c905
 .Tn Ethernet

Index: src/share/man/man4/sbus.4
diff -u src/share/man/man4/sbus.4:1.9 src/share/man/man4/sbus.4:1.10
--- src/share/man/man4/sbus.4:1.9	Wed Jan  7 09:12:38 2009
+++ src/share/man/man4/sbus.4	Thu Sep  6 09:47:30 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: sbus.4,v 1.9 2009/01/07 09:12:38 jnemeth Exp $
+.\"	$NetBSD: sbus.4,v 1.10 2018/09/06 09:47:30 maxv Exp $
 .\"
 .\" Copyright (c) 2001 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd January 7, 2009
+.Dd September 6, 2018
 .Dt SBUS 4
 .Os
 .Sh NAME
@@ -82,8 +82,6 @@ interfaces.
 .Dq Happy Meal
 .Tn Ethernet
 interfaces.
-.It en
-Midway-based Efficient Networks Inc. and Adaptec ATM interfaces.
 .It be
 .Dq Big Mac
 .Tn Ethernet



CVS commit: src/share/man/man4

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:47:30 UTC 2018

Modified Files:
src/share/man/man4: pci.4 sbus.4

Log Message:
Remove lurking references to Midway. These lists don't seem to be really
up-to-date, by the way.


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/share/man/man4/pci.4
cvs rdiff -u -r1.9 -r1.10 src/share/man/man4/sbus.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man7

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:44:09 UTC 2018

Modified Files:
src/share/man/man7: hier.7 src.7

Log Message:
Replace netkey/ -> netipsec/, everything was moved into netipsec/.


To generate a diff of this commit:
cvs rdiff -u -r1.131 -r1.132 src/share/man/man7/hier.7
cvs rdiff -u -r1.13 -r1.14 src/share/man/man7/src.7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man7/hier.7
diff -u src/share/man/man7/hier.7:1.131 src/share/man/man7/hier.7:1.132
--- src/share/man/man7/hier.7:1.131	Thu Sep  6 06:41:59 2018
+++ src/share/man/man7/hier.7	Thu Sep  6 09:44:09 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: hier.7,v 1.131 2018/09/06 06:41:59 maxv Exp $
+.\"	$NetBSD: hier.7,v 1.132 2018/09/06 09:44:09 maxv Exp $
 .\"
 .\" Copyright (c) 1990, 1993, 1994
 .\"	The Regents of the University of California.  All rights reserved.
@@ -461,7 +461,7 @@ Include files for Internet standard prot
 .It Pa netinet6/
 Include files for Internet protocol version 6; see
 .Xr inet6 4 .
-.It Pa netkey/
+.It Pa netipsec/
 Include files for secret key management, used for security protocols; see
 .Xr ipsec 4 .
 .It Pa nfs/

Index: src/share/man/man7/src.7
diff -u src/share/man/man7/src.7:1.13 src/share/man/man7/src.7:1.14
--- src/share/man/man7/src.7:1.13	Thu Sep  6 06:41:59 2018
+++ src/share/man/man7/src.7	Thu Sep  6 09:44:09 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: src.7,v 1.13 2018/09/06 06:41:59 maxv Exp $
+.\" $NetBSD: src.7,v 1.14 2018/09/06 09:44:09 maxv Exp $
 .\"
 .\" Copyright (c) 2012, 2013 Mingzhe Wang and Elvira Khabirova.
 .\"	All rights reserved.
@@ -305,8 +305,6 @@ IPsec protocol stack
 .It Pa netisdn/
 ISDN protocol stack
 .Xr isdn 4 .
-.It Pa netkey/
-Key management for IPsec.
 .It Pa netmpls/
 MPLS protocol stack
 .Xr mpls 4 .



CVS commit: src/share/man/man7

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:44:09 UTC 2018

Modified Files:
src/share/man/man7: hier.7 src.7

Log Message:
Replace netkey/ -> netipsec/, everything was moved into netipsec/.


To generate a diff of this commit:
cvs rdiff -u -r1.131 -r1.132 src/share/man/man7/hier.7
cvs rdiff -u -r1.13 -r1.14 src/share/man/man7/src.7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/crypto/dist/ipsec-tools/src/libipsec

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:38:05 UTC 2018

Modified Files:
src/crypto/dist/ipsec-tools/src/libipsec: ipsec_strerror.3

Log Message:
sync with reality


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 \
src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/crypto/dist/ipsec-tools/src/libipsec

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:38:05 UTC 2018

Modified Files:
src/crypto/dist/ipsec-tools/src/libipsec: ipsec_strerror.3

Log Message:
sync with reality


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 \
src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3
diff -u src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3:1.12 src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3:1.13
--- src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3:1.12	Wed Jan  4 16:30:50 2012
+++ src/crypto/dist/ipsec-tools/src/libipsec/ipsec_strerror.3	Thu Sep  6 09:38:05 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: ipsec_strerror.3,v 1.12 2012/01/04 16:30:50 wiz Exp $
+.\"	$NetBSD: ipsec_strerror.3,v 1.13 2018/09/06 09:38:05 maxv Exp $
 .\"
 .\"	$KAME: ipsec_strerror.3,v 1.9 2001/08/17 07:21:36 itojun Exp $
 .\"
@@ -29,7 +29,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd January 4, 2012
+.Dd September 6, 2018
 .Dt IPSEC_STRERROR 3
 .Os
 .\"
@@ -45,17 +45,9 @@
 .Fn ipsec_strerror void
 .\"
 .Sh DESCRIPTION
-.Pa netinet6/ipsec.h
-declares
-.Pp
-.Dl extern int ipsec_errcode ;
-.Pp
-which is used to pass an error code from the IPsec policy manipulation
-library to a program.
 .Fn ipsec_strerror
 can be used to obtain the error message string for the error code.
 .Pp
-The array pointed to is not to be modified by the calling program.
 Since
 .Fn ipsec_strerror
 uses



CVS commit: src/etc/mtree

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:31:06 UTC 2018

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
remove netnatm leftover


To generate a diff of this commit:
cvs rdiff -u -r1.171 -r1.172 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/mtree

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:31:06 UTC 2018

Modified Files:
src/etc/mtree: NetBSD.dist.base

Log Message:
remove netnatm leftover


To generate a diff of this commit:
cvs rdiff -u -r1.171 -r1.172 src/etc/mtree/NetBSD.dist.base

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/mtree/NetBSD.dist.base
diff -u src/etc/mtree/NetBSD.dist.base:1.171 src/etc/mtree/NetBSD.dist.base:1.172
--- src/etc/mtree/NetBSD.dist.base:1.171	Tue Jul 17 18:55:24 2018
+++ src/etc/mtree/NetBSD.dist.base	Thu Sep  6 09:31:06 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: NetBSD.dist.base,v 1.171 2018/07/17 18:55:24 joerg Exp $
+#	$NetBSD: NetBSD.dist.base,v 1.172 2018/09/06 09:31:06 maxv Exp $
 #	@(#)4.4BSD.dist	8.1 (Berkeley) 6/13/93
 
 # Do not customize this file as it may be overwritten on upgrades.
@@ -221,7 +221,6 @@
 ./usr/include/netipsec
 ./usr/include/netisdn
 ./usr/include/netkey
-./usr/include/netnatm
 ./usr/include/netpgp
 ./usr/include/netsmb
 ./usr/include/nfs



CVS commit: src/lib/libc/gen

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:28:00 UTC 2018

Modified Files:
src/lib/libc/gen: sysctl.3

Log Message:
fix references, the things were moved into netipsec/ a while ago


To generate a diff of this commit:
cvs rdiff -u -r1.203 -r1.204 src/lib/libc/gen/sysctl.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/gen

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 09:28:00 UTC 2018

Modified Files:
src/lib/libc/gen: sysctl.3

Log Message:
fix references, the things were moved into netipsec/ a while ago


To generate a diff of this commit:
cvs rdiff -u -r1.203 -r1.204 src/lib/libc/gen/sysctl.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/gen/sysctl.3
diff -u src/lib/libc/gen/sysctl.3:1.203 src/lib/libc/gen/sysctl.3:1.204
--- src/lib/libc/gen/sysctl.3:1.203	Mon Jul  3 21:32:49 2017
+++ src/lib/libc/gen/sysctl.3	Thu Sep  6 09:28:00 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: sysctl.3,v 1.203 2017/07/03 21:32:49 wiz Exp $
+.\"	$NetBSD: sysctl.3,v 1.204 2018/09/06 09:28:00 maxv Exp $
 .\"
 .\" Copyright (c) 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -29,7 +29,7 @@
 .\"
 .\"	@(#)sysctl.3	8.4 (Berkeley) 5/9/95
 .\"
-.Dd June 13, 2014
+.Dd September 6, 2018
 .Dt SYSCTL 3
 .Os
 .Sh NAME
@@ -665,9 +665,9 @@ definitions for fourth level TCP identif
 definitions for fourth level UDP identifiers
 .It Aq Pa netinet6/udp6_var.h
 definitions for fourth level IPv6 UDP identifiers
-.It Aq Pa netinet6/ipsec.h
+.It Aq Pa netipsec/ipsec.h
 definitions for fourth level IPsec identifiers
-.It Aq Pa netkey/key_var.h
+.It Aq Pa netipsec/key_var.h
 definitions for third level PF_KEY identifiers
 .It Aq Pa machine/cpu.h
 definitions for second level machdep identifiers



CVS commit: src/sys

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 09:13:42 UTC 2018

Modified Files:
src/sys: Makefile

Log Message:
netnatm is gone


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/sys/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/Makefile
diff -u src/sys/Makefile:1.80 src/sys/Makefile:1.81
--- src/sys/Makefile:1.80	Sat May 27 21:02:55 2017
+++ src/sys/Makefile	Thu Sep  6 09:13:42 2018
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.80 2017/05/27 21:02:55 bouyer Exp $
+#	$NetBSD: Makefile,v 1.81 2018/09/06 09:13:42 martin Exp $
 
 .include 
 
 SUBDIR=	altq arch compat dev fs miscfs \
 	net net80211 netatalk netbt netcan netipsec netinet netinet6 \
-netisdn netkey netmpls netnatm netsmb \
+netisdn netkey netmpls netsmb \
 	nfs opencrypto sys ufs uvm
 
 # interrupt implementation depends on the kernel within the port



CVS commit: src/sys

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 09:13:42 UTC 2018

Modified Files:
src/sys: Makefile

Log Message:
netnatm is gone


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/sys/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [pgoyette-compat] src/doc

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 08:22:10 UTC 2018

Modified Files:
src/doc [pgoyette-compat]: COMPAT-branch-notes

Log Message:
Update some entries to reflect why they're not needed before merging
the branch back to mainline.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/COMPAT-branch-notes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [pgoyette-compat] src/doc

2018-09-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu Sep  6 08:22:10 UTC 2018

Modified Files:
src/doc [pgoyette-compat]: COMPAT-branch-notes

Log Message:
Update some entries to reflect why they're not needed before merging
the branch back to mainline.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.21 -r1.1.2.22 src/doc/COMPAT-branch-notes

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/COMPAT-branch-notes
diff -u src/doc/COMPAT-branch-notes:1.1.2.21 src/doc/COMPAT-branch-notes:1.1.2.22
--- src/doc/COMPAT-branch-notes:1.1.2.21	Tue Sep  4 11:36:06 2018
+++ src/doc/COMPAT-branch-notes	Thu Sep  6 08:22:10 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: COMPAT-branch-notes,v 1.1.2.21 2018/09/04 11:36:06 pgoyette Exp $ */
+/* $NetBSD: COMPAT-branch-notes,v 1.1.2.22 2018/09/06 08:22:10 pgoyette Exp $ */
 
 DONE
 
@@ -40,10 +40,8 @@ DONE
 that the component modules are available.
 
 Similarly, the compat_sysv module has also been split into several
-version-specific modules.
-
-There are still several areas which are not complete - see the
-TODO list below for more details.
+version-specific modules.  (A mini-monolithic compat_sysv module
+is still provided.)
 
 10. syscalls.master has been updated to autoload the version-specific
 compat modules rather than the monolithic modules.
@@ -54,9 +52,8 @@ DONE
 
 TODO - Required for branch merge
 
-1.  For compat_50, in addition to rtsock there are some things in dev/vnd,
-dev/gpio, and dev/wscons/wsmux that I haven't been able to cleanly
-separate.
+none
+
 
 TODO - Not required for branch merge
 
@@ -70,13 +67,17 @@ TODO - Not required for branch merge
 routines needs to be verified.
 
 Currently, this entire code is built for the monolithic COMPAT
-module, but there's no way to reach the entry points.
+module, but there's no way to reach the entry points, so none of
+the compat code can be executed, neither on the branch nor on
+HEAD.
 
 3.  The compat_60 module still needs some work for XEN systems.  We
 probably need some build infrastructure changes to ensure that
 XEN (and, for i386, XEN-PAE) modules are build with the correct
 macros defined and with -I directories specified in the same order
-as for building kernels. See PR port-xen/53130.
+as for building kernels. See PR port-xen/53130.  This currently
+prevents loading of micro-code updates for amd64 processors running
+XEN kernels.  This limitation also exists on HEAD.
 
 4.  There seems to be quite a bit of MD compat_xx code, in the various
 sys/arch/ directories.  I haven't yet looked at any of this.  But it
@@ -86,9 +87,19 @@ TODO - Not required for branch merge
 compat_xx_MD_init() routine.
 
 Note also that there are a few bits of MD code that is COMPAT_44
-related.  The only bit of MI COMPAT_44 code is in the single module
-shared by COMPAT_43 and COMPAT_09.  This affects the cesfic, hp300,
+related.  (The only bit of MI COMPAT_44 code is in the single module
+shared by COMPAT_43 and COMPAT_09.)  This affects the cesfic, hp300,
 news68k, and x68k platforms, all in their respective machdep.c
 source file.  Additionally, the zaurus platform defines COMPAT_44 in
 its INSTALL kernel configuration - but no other configuration files!
 
+As far as I can tell, none of the MD compat code is currently built
+into the monolithic COMPAT module on HEAD.  Thus, its absence from
+any of the version-specific modules is not a regression.
+
+5.  For compat_50, in addition to rtsock there are some things in dev/vnd,
+dev/gpio, and dev/wscons/wsmux that I haven't been able to cleanly
+separate.  These items are not currently included in the monolithic
+COMPAT module on HEAD, so lack of integration on the branch is not a
+regression.
+



CVS commit: src/sys/dev/pci/ixgbe

2018-09-06 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Sep  6 08:20:12 UTC 2018

Modified Files:
src/sys/dev/pci/ixgbe: ix_txrx.c

Log Message:
 Fix a bug that ixgbe_mq_start(an if_transmit function) returned wrong
vaue on error. pcq_put returns false on error, so returning it to caller
indicated no error.

XXX pullup-8


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/ixgbe/ix_txrx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-8] src/external/gpl3/gcc/lib/libgcc

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 07:58:57 UTC 2018

Modified Files:
src/external/gpl3/gcc/lib/libgcc [netbsd-8]: Makefile.inc

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1009):

external/gpl3/gcc/lib/libgcc/Makefile.inc: revision 1.37

pull -DHAVE_CC_TLS out of $(INTERNAL_CFLAGS) if it is there, and add
it to CPPFLAGS.

this fixes PR#53567 for me.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.35.6.1 src/external/gpl3/gcc/lib/libgcc/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/sysinst

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 07:56:40 UTC 2018

Modified Files:
src/usr.sbin/sysinst: defs.h

Log Message:
Fix previous in case when BUILDID is passed - the subdirectory has the
same name as the BUILDID (which already includes the trailing "Z", no need
to append it again)


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/sysinst/defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/sysinst/defs.h
diff -u src/usr.sbin/sysinst/defs.h:1.13 src/usr.sbin/sysinst/defs.h:1.14
--- src/usr.sbin/sysinst/defs.h:1.13	Wed Sep  5 12:49:55 2018
+++ src/usr.sbin/sysinst/defs.h	Thu Sep  6 07:56:40 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: defs.h,v 1.13 2018/09/05 12:49:55 martin Exp $	*/
+/*	$NetBSD: defs.h,v 1.14 2018/09/06 07:56:40 martin Exp $	*/
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -344,7 +344,7 @@ int  clean_xfer_dir;
 #if defined(NETBSD_OFFICIAL_RELEASE)
 #define SYSINST_FTP_DIR		"pub/NetBSD/NetBSD-" REL
 #elif defined(BUILDID) && defined(REL_PATH)
-#define SYSINST_FTP_DIR		"pub/NetBSD-daily/" REL_PATH "/" BUILDID "Z"
+#define SYSINST_FTP_DIR		"pub/NetBSD-daily/" REL_PATH "/" BUILDID
 #elif defined(REL_PATH)
 #define SYSINST_FTP_DIR		"pub/NetBSD-daily/" REL_PATH
 #else



CVS commit: src/sys/dev/pci/ixgbe

2018-09-06 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Sep  6 08:20:12 UTC 2018

Modified Files:
src/sys/dev/pci/ixgbe: ix_txrx.c

Log Message:
 Fix a bug that ixgbe_mq_start(an if_transmit function) returned wrong
vaue on error. pcq_put returns false on error, so returning it to caller
indicated no error.

XXX pullup-8


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/ixgbe/ix_txrx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/ixgbe/ix_txrx.c
diff -u src/sys/dev/pci/ixgbe/ix_txrx.c:1.49 src/sys/dev/pci/ixgbe/ix_txrx.c:1.50
--- src/sys/dev/pci/ixgbe/ix_txrx.c:1.49	Tue Jul 31 09:19:34 2018
+++ src/sys/dev/pci/ixgbe/ix_txrx.c	Thu Sep  6 08:20:12 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: ix_txrx.c,v 1.49 2018/07/31 09:19:34 msaitoh Exp $ */
+/* $NetBSD: ix_txrx.c,v 1.50 2018/09/06 08:20:12 msaitoh Exp $ */
 
 /**
 
@@ -202,7 +202,7 @@ ixgbe_mq_start(struct ifnet *ifp, struct
 {
 	struct adapter	*adapter = ifp->if_softc;
 	struct tx_ring	*txr;
-	int 		i, err = 0;
+	int 		i;
 #ifdef RSS
 	uint32_t bucket_id;
 #endif
@@ -238,11 +238,10 @@ ixgbe_mq_start(struct ifnet *ifp, struct
 
 	txr = >tx_rings[i];
 
-	err = pcq_put(txr->txr_interq, m);
-	if (err == false) {
+	if (__predict_false(!pcq_put(txr->txr_interq, m))) {
 		m_freem(m);
 		txr->pcq_drops.ev_count++;
-		return (err);
+		return ENOBUFS;
 	}
 	if (IXGBE_TX_TRYLOCK(txr)) {
 		ixgbe_mq_start_locked(ifp, txr);



CVS commit: [netbsd-8] src/doc

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 08:11:54 UTC 2018

Modified Files:
src/doc [netbsd-8]: CHANGES-8.1

Log Message:
Ticket #1009


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-8.1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-8] src/external/gpl3/gcc/lib/libgcc

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 07:58:57 UTC 2018

Modified Files:
src/external/gpl3/gcc/lib/libgcc [netbsd-8]: Makefile.inc

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1009):

external/gpl3/gcc/lib/libgcc/Makefile.inc: revision 1.37

pull -DHAVE_CC_TLS out of $(INTERNAL_CFLAGS) if it is there, and add
it to CPPFLAGS.

this fixes PR#53567 for me.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.35.6.1 src/external/gpl3/gcc/lib/libgcc/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/lib/libgcc/Makefile.inc
diff -u src/external/gpl3/gcc/lib/libgcc/Makefile.inc:1.35 src/external/gpl3/gcc/lib/libgcc/Makefile.inc:1.35.6.1
--- src/external/gpl3/gcc/lib/libgcc/Makefile.inc:1.35	Sat Oct 22 20:33:28 2016
+++ src/external/gpl3/gcc/lib/libgcc/Makefile.inc	Thu Sep  6 07:58:57 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.inc,v 1.35 2016/10/22 20:33:28 christos Exp $
+#	$NetBSD: Makefile.inc,v 1.35.6.1 2018/09/06 07:58:57 martin Exp $
 
 LIBGCC_MACHINE_ARCH?=${MACHINE_ARCH:S/earmv5/earm/}
 
@@ -28,6 +28,7 @@ CPPFLAGS+=	-I${DIST}/libgcc/config/i386
 CPPFLAGS+=	-I${DIST}/libgcc/config/${LIBGCC_MACHINE_ARCH}
 .endif
 CPPFLAGS+=	-I${DIST}/gcc -I${DIST}/include -I.
+CPPFLAGS+=	${G_INTERNAL_CFLAGS:M-DHAVE_CC_TLS}
 
 .if ${LIBGCC_MACHINE_ARCH} == "powerpc" || \
 ${LIBGCC_MACHINE_ARCH} == "sh3el" || \



CVS commit: [netbsd-8] src/doc

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 08:11:54 UTC 2018

Modified Files:
src/doc [netbsd-8]: CHANGES-8.1

Log Message:
Ticket #1009


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.20 -r1.1.2.21 src/doc/CHANGES-8.1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-8.1
diff -u src/doc/CHANGES-8.1:1.1.2.20 src/doc/CHANGES-8.1:1.1.2.21
--- src/doc/CHANGES-8.1:1.1.2.20	Wed Sep  5 09:23:21 2018
+++ src/doc/CHANGES-8.1	Thu Sep  6 08:11:54 2018
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-8.1,v 1.1.2.20 2018/09/05 09:23:21 martin Exp $
+# $NetBSD: CHANGES-8.1,v 1.1.2.21 2018/09/06 08:11:54 martin Exp $
 
 A complete list of changes from the NetBSD 8.0 release to the NetBSD 8.1
 release:
@@ -770,5 +770,175 @@ tools/gcc/mknative-gcc1.93,1.94
 	Remove GCC 5 marker.  This is now nb3 20180905.
 	[mrg, ticket #1008]
 
-
+external/gpl3/gcc/lib/libgcc/Makefile.inc			1.37
+external/gpl3/gcc/lib/libgcc/arch/alpha/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/alpha/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/arm/auto-target.h 		(patch)
+external/gpl3/gcc/lib/libgcc/arch/arm/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/armeb/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/armeb/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/earm/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earm/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmeb/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmeb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmhf/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmhf/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmhfeb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmhfeb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv4/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv4/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv4eb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv4eb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6eb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6eb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6hf/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6hf/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6hfeb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv6hfeb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7eb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7eb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7hf/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7hf/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7hfeb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/earmv7hfeb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/hppa/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/hppa/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/i386/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/i386/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/ia64/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/ia64/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/m68000/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/m68000/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/m68k/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/m68k/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/mips64eb/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/mips64eb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/mips64el/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/mips64el/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/mipseb/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/mipseb/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/mipsel/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/mipsel/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/powerpc/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/powerpc/defs.mk		(patch)
+external/gpl3/gcc/lib/libgcc/arch/powerpc64/auto-target.h	(patch)
+external/gpl3/gcc/lib/libgcc/arch/powerpc64/defs.mk 		(patch)
+external/gpl3/gcc/lib/libgcc/arch/sh3eb/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/sh3eb/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/sh3el/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/sh3el/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/sparc/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/sparc/defs.mk			(patch)
+external/gpl3/gcc/lib/libgcc/arch/sparc64/auto-target.h		(patch)
+external/gpl3/gcc/lib/libgcc/arch/sparc64/defs.mk	

CVS commit: [netbsd-8] src/external/gpl3/gcc

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 08:11:26 UTC 2018

Modified Files:
src/external/gpl3/gcc/lib/libgcc/arch/alpha [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/arm [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/armeb [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earm [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmeb [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmhf [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmhfeb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv4 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv4eb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv6 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv6eb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv6hf [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv6hfeb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv7 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv7eb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv7hf [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/earmv7hfeb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/hppa [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/i386 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/ia64 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/m68000 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/m68k [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/mips64eb [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/mips64el [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/mipseb [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/mipsel [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/powerpc [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/powerpc64 [netbsd-8]:
auto-target.h defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/sh3eb [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/sh3el [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/sparc [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/sparc64 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/vax [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libgcc/arch/x86_64 [netbsd-8]: auto-target.h
defs.mk
src/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/arm [netbsd-8]: c++config.h
gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/armeb [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earm [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmeb [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhf [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmhfeb [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4 [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv4eb [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6 [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6eb [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hf [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv6hfeb [netbsd-8]:
c++config.h gstdint.h
src/external/gpl3/gcc/lib/libstdc++-v3/arch/earmv7 [netbsd-8]:
c++config.h gstdint.h

CVS commit: src/usr.sbin/sysinst

2018-09-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep  6 07:56:40 UTC 2018

Modified Files:
src/usr.sbin/sysinst: defs.h

Log Message:
Fix previous in case when BUILDID is passed - the subdirectory has the
same name as the BUILDID (which already includes the trailing "Z", no need
to append it again)


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/sysinst/defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 06:46:25 UTC 2018

Modified Files:
src/doc: CHANGES TODO.smpnet

Log Message:
Note removal of midway and NATM, and prune the entries from TODO.smpnet.


To generate a diff of this commit:
cvs rdiff -u -r1.2439 -r1.2440 src/doc/CHANGES
cvs rdiff -u -r1.23 -r1.24 src/doc/TODO.smpnet

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.2439 src/doc/CHANGES:1.2440
--- src/doc/CHANGES:1.2439	Tue Sep  4 05:17:14 2018
+++ src/doc/CHANGES	Thu Sep  6 06:46:25 2018
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			<$Revision: 1.2439 $>
+# LIST OF CHANGES FROM LAST RELEASE:			<$Revision: 1.2440 $>
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -220,3 +220,5 @@ Changes from NetBSD 8.0 to NetBSD 9.0:
 	libpcap: Import 1.9.0. [christos 20180903]
 	mpfr: Updated to version 4.0.1. [mrg 20180904]
 	mpc: Updated to version 1.1.0. [mrg 20180904]
+	kernel: Remove en(4). [maxv 20180906]
+	kernel: Remove the NATM code. [maxv 20180906]

Index: src/doc/TODO.smpnet
diff -u src/doc/TODO.smpnet:1.23 src/doc/TODO.smpnet:1.24
--- src/doc/TODO.smpnet:1.23	Tue Aug 14 14:49:13 2018
+++ src/doc/TODO.smpnet	Thu Sep  6 06:46:25 2018
@@ -1,4 +1,4 @@
-$NetBSD: TODO.smpnet,v 1.23 2018/08/14 14:49:13 maxv Exp $
+$NetBSD: TODO.smpnet,v 1.24 2018/09/06 06:46:25 maxv Exp $
 
 MP-safe components
 ==
@@ -59,7 +59,6 @@ Unprotected ones
 
  - Layer 2
- ARCNET (if_arcsubr.c)
-   - ATM (if_atmsubr.c)
- BRIDGE_IPF
- FDDI (if_fddisubr.c)
- HIPPI (if_hippisubr.c)
@@ -88,7 +87,6 @@ Unprotected ones
- pf(4)
  - Others
- AppleTalk (sys/netatalk/)
-   - ATM (sys/netnatm/)
- Bluetooth (sys/netbt/)
- altq(4)
- CIFS (sys/netsmb/)
@@ -118,7 +116,6 @@ Unfortunately some bpf_mtap on Rx are st
 This is the list of the functions that have such bpf_mtap:
 
  - sca_frame_process() @ sys/dev/ic/hd64570.c
- - en_intr() @ sys/dev/ic/midway.c
  - rxintr_cleanup() @ sys/dev/pci/if_lmc.c
  - ipr_rx_data_rdy() @ sys/netisdn/i4b_ipr.c
 



CVS commit: src/doc

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 06:46:25 UTC 2018

Modified Files:
src/doc: CHANGES TODO.smpnet

Log Message:
Note removal of midway and NATM, and prune the entries from TODO.smpnet.


To generate a diff of this commit:
cvs rdiff -u -r1.2439 -r1.2440 src/doc/CHANGES
cvs rdiff -u -r1.23 -r1.24 src/doc/TODO.smpnet

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 06:42:00 UTC 2018

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/comp: mi
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/man: mi
src/share/man/man7: hier.7 src.7
src/sys/compat/common: if_43.c uipc_syscalls_43.c
src/sys/compat/netbsd32: netbsd32_ioctl.h
src/sys/conf: files
src/sys/net: Makefile files.net if.c netisr.h netisr_dispatch.h
src/sys/netinet: Makefile
src/usr.sbin: Makefile
Removed Files:
src/sys/net: if_atm.h if_atmsubr.c
src/sys/netinet: if_atm.c if_atm.h
src/sys/netnatm: Makefile files.netnatm natm.c natm.h natm_pcb.c
natm_proto.c
src/usr.sbin/pvcsif: Makefile pvcsif.8 pvcsif.c
src/usr.sbin/pvctxctl: Makefile pvctxctl.8 pvctxctl.c

Log Message:
Remove the network ATM code.


To generate a diff of this commit:
cvs rdiff -u -r1.1183 -r1.1184 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.2225 -r1.2226 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.263 -r1.264 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.1613 -r1.1614 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.130 -r1.131 src/share/man/man7/hier.7
cvs rdiff -u -r1.12 -r1.13 src/share/man/man7/src.7
cvs rdiff -u -r1.14 -r1.15 src/sys/compat/common/if_43.c
cvs rdiff -u -r1.49 -r1.50 src/sys/compat/common/uipc_syscalls_43.c
cvs rdiff -u -r1.60 -r1.61 src/sys/compat/netbsd32/netbsd32_ioctl.h
cvs rdiff -u -r1.1205 -r1.1206 src/sys/conf/files
cvs rdiff -u -r1.37 -r1.38 src/sys/net/Makefile
cvs rdiff -u -r1.17 -r1.18 src/sys/net/files.net
cvs rdiff -u -r1.434 -r1.435 src/sys/net/if.c
cvs rdiff -u -r1.21 -r0 src/sys/net/if_atm.h
cvs rdiff -u -r1.61 -r0 src/sys/net/if_atmsubr.c
cvs rdiff -u -r1.45 -r1.46 src/sys/net/netisr.h
cvs rdiff -u -r1.19 -r1.20 src/sys/net/netisr_dispatch.h
cvs rdiff -u -r1.29 -r1.30 src/sys/netinet/Makefile
cvs rdiff -u -r1.39 -r0 src/sys/netinet/if_atm.c
cvs rdiff -u -r1.13 -r0 src/sys/netinet/if_atm.h
cvs rdiff -u -r1.2 -r0 src/sys/netnatm/Makefile
cvs rdiff -u -r1.1 -r0 src/sys/netnatm/files.netnatm
cvs rdiff -u -r1.53 -r0 src/sys/netnatm/natm.c
cvs rdiff -u -r1.15 -r0 src/sys/netnatm/natm.h
cvs rdiff -u -r1.17 -r0 src/sys/netnatm/natm_pcb.c
cvs rdiff -u -r1.18 -r0 src/sys/netnatm/natm_proto.c
cvs rdiff -u -r1.277 -r1.278 src/usr.sbin/Makefile
cvs rdiff -u -r1.2 -r0 src/usr.sbin/pvcsif/Makefile
cvs rdiff -u -r1.4 -r0 src/usr.sbin/pvcsif/pvcsif.8
cvs rdiff -u -r1.5 -r0 src/usr.sbin/pvcsif/pvcsif.c
cvs rdiff -u -r1.2 -r0 src/usr.sbin/pvctxctl/Makefile
cvs rdiff -u -r1.7 -r0 src/usr.sbin/pvctxctl/pvctxctl.8 \
src/usr.sbin/pvctxctl/pvctxctl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/base/mi
diff -u src/distrib/sets/lists/base/mi:1.1183 src/distrib/sets/lists/base/mi:1.1184
--- src/distrib/sets/lists/base/mi:1.1183	Sun Aug 12 17:11:55 2018
+++ src/distrib/sets/lists/base/mi	Thu Sep  6 06:41:59 2018
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1183 2018/08/12 17:11:55 christos Exp $
+# $NetBSD: mi,v 1.1184 2018/09/06 06:41:59 maxv Exp $
 #
 # Note:	Don't delete entries from here - mark them as "obsolete" instead,
 #	unless otherwise stated below.
@@ -1217,7 +1217,7 @@
 ./usr/include/netisobase-obsolete		obsolete
 ./usr/include/netkeybase-c-usr
 ./usr/include/netmplsbase-c-usr
-./usr/include/netnatmbase-c-usr
+./usr/include/netnatmbase-obsolete		obsolete
 ./usr/include/netnsbase-obsolete		obsolete
 ./usr/include/netpgpbase-c-usr
 ./usr/include/netsmbbase-c-usr
@@ -1878,8 +1878,8 @@
 ./usr/sbin/procsystimebase-debug-bin		dtrace
 ./usr/sbin/psrsetbase-sysutil-bin
 ./usr/sbin/pstatbase-sysutil-bin
-./usr/sbin/pvcsifbase-netutil-bin
-./usr/sbin/pvctxctlbase-netutil-bin
+./usr/sbin/pvcsifbase-obsolete		obsolete
+./usr/sbin/pvctxctlbase-obsolete		obsolete
 ./usr/sbin/pwd_mkdbbase-sysutil-bin
 ./usr/sbin/quot	base-sysutil-bin
 ./usr/sbin/quotacheckbase-sysutil-bin

Index: src/distrib/sets/lists/comp/mi
diff -u src/distrib/sets/lists/comp/mi:1.2225 src/distrib/sets/lists/comp/mi:1.2226
--- src/distrib/sets/lists/comp/mi:1.2225	Mon Sep  3 21:26:19 2018
+++ src/distrib/sets/lists/comp/mi	Thu Sep  6 06:41:59 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: mi,v 1.2225 2018/09/03 21:26:19 kre Exp $
+#	$NetBSD: mi,v 1.2226 2018/09/06 06:41:59 maxv Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 ./etc/mtree/set.compcomp-sys-root
@@ -2295,7 +2295,7 @@
 ./usr/include/net/if.hcomp-c-include
 ./usr/include/net/if_arc.h			comp-c-include
 ./usr/include/net/if_arp.h			comp-c-include
-./usr/include/net/if_atm.h			comp-c-include
+./usr/include/net/if_atm.h			comp-obsolete		obsolete
 ./usr/include/net/if_bridgevar.h		comp-c-include
 ./usr/include/net/if_dl.h			comp-c-include
 

CVS commit: src

2018-09-06 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Thu Sep  6 06:42:00 UTC 2018

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/comp: mi
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/man: mi
src/share/man/man7: hier.7 src.7
src/sys/compat/common: if_43.c uipc_syscalls_43.c
src/sys/compat/netbsd32: netbsd32_ioctl.h
src/sys/conf: files
src/sys/net: Makefile files.net if.c netisr.h netisr_dispatch.h
src/sys/netinet: Makefile
src/usr.sbin: Makefile
Removed Files:
src/sys/net: if_atm.h if_atmsubr.c
src/sys/netinet: if_atm.c if_atm.h
src/sys/netnatm: Makefile files.netnatm natm.c natm.h natm_pcb.c
natm_proto.c
src/usr.sbin/pvcsif: Makefile pvcsif.8 pvcsif.c
src/usr.sbin/pvctxctl: Makefile pvctxctl.8 pvctxctl.c

Log Message:
Remove the network ATM code.


To generate a diff of this commit:
cvs rdiff -u -r1.1183 -r1.1184 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.2225 -r1.2226 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.263 -r1.264 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.1613 -r1.1614 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.130 -r1.131 src/share/man/man7/hier.7
cvs rdiff -u -r1.12 -r1.13 src/share/man/man7/src.7
cvs rdiff -u -r1.14 -r1.15 src/sys/compat/common/if_43.c
cvs rdiff -u -r1.49 -r1.50 src/sys/compat/common/uipc_syscalls_43.c
cvs rdiff -u -r1.60 -r1.61 src/sys/compat/netbsd32/netbsd32_ioctl.h
cvs rdiff -u -r1.1205 -r1.1206 src/sys/conf/files
cvs rdiff -u -r1.37 -r1.38 src/sys/net/Makefile
cvs rdiff -u -r1.17 -r1.18 src/sys/net/files.net
cvs rdiff -u -r1.434 -r1.435 src/sys/net/if.c
cvs rdiff -u -r1.21 -r0 src/sys/net/if_atm.h
cvs rdiff -u -r1.61 -r0 src/sys/net/if_atmsubr.c
cvs rdiff -u -r1.45 -r1.46 src/sys/net/netisr.h
cvs rdiff -u -r1.19 -r1.20 src/sys/net/netisr_dispatch.h
cvs rdiff -u -r1.29 -r1.30 src/sys/netinet/Makefile
cvs rdiff -u -r1.39 -r0 src/sys/netinet/if_atm.c
cvs rdiff -u -r1.13 -r0 src/sys/netinet/if_atm.h
cvs rdiff -u -r1.2 -r0 src/sys/netnatm/Makefile
cvs rdiff -u -r1.1 -r0 src/sys/netnatm/files.netnatm
cvs rdiff -u -r1.53 -r0 src/sys/netnatm/natm.c
cvs rdiff -u -r1.15 -r0 src/sys/netnatm/natm.h
cvs rdiff -u -r1.17 -r0 src/sys/netnatm/natm_pcb.c
cvs rdiff -u -r1.18 -r0 src/sys/netnatm/natm_proto.c
cvs rdiff -u -r1.277 -r1.278 src/usr.sbin/Makefile
cvs rdiff -u -r1.2 -r0 src/usr.sbin/pvcsif/Makefile
cvs rdiff -u -r1.4 -r0 src/usr.sbin/pvcsif/pvcsif.8
cvs rdiff -u -r1.5 -r0 src/usr.sbin/pvcsif/pvcsif.c
cvs rdiff -u -r1.2 -r0 src/usr.sbin/pvctxctl/Makefile
cvs rdiff -u -r1.7 -r0 src/usr.sbin/pvctxctl/pvctxctl.8 \
src/usr.sbin/pvctxctl/pvctxctl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.