summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Langer <alex@FreeBSD.org>1998-07-25 15:52:10 +0000
committerAlexander Langer <alex@FreeBSD.org>1998-07-25 15:52:10 +0000
commit38bfd69bdad738f96c71eff4e2fb5848f8412835 (patch)
tree58fdba35a9df5b0c2f13ce3ef3b7c50801649fb7
parent4adac93d90085dc582660cbd6a29e9547f10b06c (diff)
Notes
-rw-r--r--sys/sys/mount.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index c248a3c4d376..af69fa59b945 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mount.h 8.21 (Berkeley) 5/20/95
- * $Id: mount.h,v 1.61 1998/04/08 18:31:59 wosch Exp $
+ * $Id: mount.h,v 1.62 1998/05/06 05:29:39 msmith Exp $
*/
#ifndef _SYS_MOUNT_H_
@@ -378,6 +378,18 @@ struct vfsops {
#include <sys/sysent.h>
#include <sys/lkm.h>
+#ifdef VFS_LKM_NO_DEFAULT_DISPATCH
+#define VFS_LKM_DISPATCH(fsname) \
+ extern int \
+ fsname ## _mod __P((struct lkm_table *, int, int));
+#else
+#define VFS_LKM_DISPATCH(fsname) \
+ int \
+ fsname ## _mod(struct lkm_table *lkmtp, int cmd, int ver) { \
+ MOD_DISPATCH(fsname, \
+ lkmtp, cmd, ver, lkm_nullcmd, lkm_nullcmd, lkm_nullcmd); }
+#endif
+
#define VFS_SET(vfsops, fsname, index, flags) \
static struct vfsconf _fs_vfsconf = { \
&vfsops, \
@@ -388,12 +400,7 @@ struct vfsops {
}; \
extern struct linker_set MODVNOPS; \
MOD_VFS(fsname,&MODVNOPS,&_fs_vfsconf); \
- extern int \
- fsname ## _mod __P((struct lkm_table *, int, int)); \
- int \
- fsname ## _mod(struct lkm_table *lkmtp, int cmd, int ver) { \
- MOD_DISPATCH(fsname, \
- lkmtp, cmd, ver, lkm_nullcmd, lkm_nullcmd, lkm_nullcmd); }
+ VFS_LKM_DISPATCH(fsname)
#else
#define VFS_SET(vfsops, fsname, index, flags) \