Module Name: src
Committed By: riastradh
Date: Thu Apr 27 19:18:50 UTC 2017
Modified Files:
src/sys/sys: param.h
Log Message:
Welcome to 7.99.71, courtesy of a slight increment in vfs sanity.
*fs_remove no longer releases the caller's lock of dvp on exit.
Sorry for delay in bump. Thanks, martin, for catching this!
To generate a diff of this commit:
cvs rdiff -u -r1.537 -r1.538 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.537 src/sys/sys/param.h:1.538
--- src/sys/sys/param.h:1.537 Mon Apr 17 08:34:58 2017
+++ src/sys/sys/param.h Thu Apr 27 19:18:50 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.537 2017/04/17 08:34:58 hannken Exp $ */
+/* $NetBSD: param.h,v 1.538 2017/04/27 19:18:50 riastradh Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -67,7 +67,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 799007000 /* NetBSD 7.99.70 */
+#define __NetBSD_Version__ 799007100 /* NetBSD 7.99.71 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)