summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_conf.c
diff options
context:
space:
mode:
authorJanne Johansson <jj@cvs.openbsd.org>2009-06-03 14:45:57 +0000
committerJanne Johansson <jj@cvs.openbsd.org>2009-06-03 14:45:57 +0000
commitea9bbf428f51194a52c45ac274c35dba174a741c (patch)
tree301aa894fd92a097d769b8cac575c8a0fce07329 /sys/kern/vfs_conf.c
parent0c52879fa54117b2bd312fe5fff17f310dbdb7eb (diff)
Arla client rename from xfs to nnpfs for later upgrades. Tested on various arches. ok todd@ beck@
Diffstat (limited to 'sys/kern/vfs_conf.c')
-rw-r--r--sys/kern/vfs_conf.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c
index 3f22882129c..bc50315c89a 100644
--- a/sys/kern/vfs_conf.c
+++ b/sys/kern/vfs_conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_conf.c,v 1.35 2008/05/07 14:08:37 thib Exp $ */
+/* $OpenBSD: vfs_conf.c,v 1.36 2009/06/03 14:45:54 jj Exp $ */
/* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */
/*
@@ -106,8 +106,8 @@ extern const struct vfsops cd9660_vfsops;
extern const struct vfsops ext2fs_vfsops;
#endif
-#ifdef XFS
-extern const struct vfsops xfs_vfsops;
+#ifdef NNPFS
+extern const struct vfsops nnpfs_vfsops;
#endif
#ifdef NTFS
@@ -151,9 +151,9 @@ static struct vfsconf vfsconflist[] = {
{ &nfs_vfsops, MOUNT_NFS, 2, 0, 0, NULL },
#endif
- /* XFS */
-#ifdef XFS
- { &xfs_vfsops, MOUNT_XFS, 21, 0, 0, NULL },
+ /* NNPFS */
+#ifdef NNPFS
+ { &nnpfs_vfsops, MOUNT_NNPFS, 21, 0, 0, NULL },
#endif
/* /proc Filesystem */
@@ -212,7 +212,7 @@ extern struct vnodeopv_desc msdosfs_vnodeop_opv_desc;
extern struct vnodeopv_desc ext2fs_vnodeop_opv_desc;
extern struct vnodeopv_desc ext2fs_specop_opv_desc;
extern struct vnodeopv_desc ext2fs_fifoop_opv_desc;
-extern struct vnodeopv_desc xfs_vnodeop_opv_desc;
+extern struct vnodeopv_desc nnpfs_vnodeop_opv_desc;
extern struct vnodeopv_desc ntfs_vnodeop_opv_desc;
extern struct vnodeopv_desc udf_vnodeop_opv_desc;
@@ -263,8 +263,8 @@ struct vnodeopv_desc *vfs_opv_descs[] = {
&ext2fs_fifoop_opv_desc,
#endif
#endif
-#ifdef XFS
- &xfs_vnodeop_opv_desc,
+#ifdef NNPFS
+ &nnpfs_vnodeop_opv_desc,
#endif
#ifdef NTFS
&ntfs_vnodeop_opv_desc,