Module Name: src Committed By: msaitoh Date: Mon Oct 24 08:14:11 UTC 2022
Modified Files: src/sys/sys: param.h Log Message: Welcome to 9.99.102 - Increase the size of dl_data[] from 12 to 24. - Make ifq_drops in struct ifqueue and struct ifaltq 64 bit. To generate a diff of this commit: cvs rdiff -u -r1.714 -r1.715 src/sys/sys/param.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/sys/param.h diff -u src/sys/sys/param.h:1.714 src/sys/sys/param.h:1.715 --- src/sys/sys/param.h:1.714 Tue Oct 11 09:52:49 2022 +++ src/sys/sys/param.h Mon Oct 24 08:14:11 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.714 2022/10/11 09:52:49 knakahara Exp $ */ +/* $NetBSD: param.h,v 1.715 2022/10/24 08:14:11 msaitoh Exp $ */ /*- * Copyright (c) 1982, 1986, 1989, 1993 @@ -67,7 +67,7 @@ * 2.99.9 (299000900) */ -#define __NetBSD_Version__ 999010100 /* NetBSD 9.99.101 */ +#define __NetBSD_Version__ 999010200 /* NetBSD 9.99.102 */ #define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \ (m) * 1000000) + (p) * 100) <= __NetBSD_Version__)