From 1ec1b491a9b088475f98800268eb05f8325e8dc3 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Sat, 11 Sep 1999 15:55:12 +0000 Subject: [PATCH] Argh, actually commit the update of ntfsmount structure for NFS export support, so that it actually compiles. Thanks Lennart! --- sys/ntfs/ntfs.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys/ntfs/ntfs.h b/sys/ntfs/ntfs.h index 5cad13bb167f..8bb86264075d 100644 --- a/sys/ntfs/ntfs.h +++ b/sys/ntfs/ntfs.h @@ -1,4 +1,4 @@ -/* $NetBSD: ntfs.h,v 1.6 1999/08/16 08:11:34 jdolecek Exp $ */ +/* $NetBSD: ntfs.h,v 1.7 1999/09/11 15:55:12 jdolecek Exp $ */ /*- * Copyright (c) 1998, 1999 Semen Ustimenko @@ -242,10 +242,10 @@ struct bootfile { #define NTFS_SYSNODESNUM 0x0B struct ntfsmount { - struct mount *ntm_mountp; + struct mount *ntm_mountp; /* filesystem vfs structure */ struct bootfile ntm_bootfile; - dev_t ntm_dev; - struct vnode *ntm_devvp; + dev_t ntm_dev; /* device mounted */ + struct vnode *ntm_devvp; /* block device mounted vnode */ struct vnode *ntm_sysvn[NTFS_SYSNODESNUM]; u_int32_t ntm_bpmftrec; uid_t ntm_uid; @@ -255,6 +255,7 @@ struct ntfsmount { cn_t ntm_cfree; struct ntvattrdef *ntm_ad; int ntm_adnum; + struct netexport ntm_export; /* export information */ }; #define ntm_mftcn ntm_bootfile.bf_mftcn