summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1999-07-15 17:45:00 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1999-07-15 17:45:00 +0000
commit0cab9e05865db89fff7c1f45c39d21f7ae33595f (patch)
tree097ceac3396f204e4ca8ef568ff44c44fd24cca9
parent6f22e9ed30ecef9cb01c901383188eb82544f3f3 (diff)
Fix the MOD_VFS macro to reflect reality.
Bump LKM_VERSION (Argh! I should have done that a few months ago!) Noted by rees@umich.edu
-rw-r--r--sys/sys/lkm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/lkm.h b/sys/sys/lkm.h
index 9c29cf5259f..399b970b14f 100644
--- a/sys/sys/lkm.h
+++ b/sys/sys/lkm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lkm.h,v 1.8 1999/02/19 17:17:49 art Exp $ */
+/* $OpenBSD: lkm.h,v 1.9 1999/07/15 17:44:59 art Exp $ */
/* $NetBSD: lkm.h,v 1.12 1996/02/09 18:25:13 christos Exp $ */
/*
@@ -58,7 +58,7 @@ typedef enum loadmod {
#define LKM_OLDVERSION 1 /* version of module loader */
-#define LKM_VERSION 1 /* version of module loader */
+#define LKM_VERSION 2 /* version of module loader */
#define MAXLKMNAME 32
/****************************************************************************/
@@ -218,13 +218,13 @@ struct lkm_table {
sysentp \
};
-#define MOD_VFS(name,vfsslot,vfsopsp) \
+#define MOD_VFS(name,vfsslot,vfsconf) \
static struct lkm_vfs _module = { \
LM_VFS, \
LKM_VERSION, \
name, \
vfsslot, \
- vfsopsp \
+ vfsconf \
};
#define MOD_DEV(name,devtype,devslot,devp) \