Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/ntfs Argh, actually commit the update of ntfsmount struc...
details: https://anonhg.NetBSD.org/src/rev/f07943f57e2e
branches: trunk
changeset: 476269:f07943f57e2e
user: jdolecek <jdolecek%NetBSD.org@localhost>
date: Sat Sep 11 15:55:12 1999 +0000
description:
Argh, actually commit the update of ntfsmount structure for NFS
export support, so that it actually compiles.
Thanks Lennart!
diffstat:
sys/ntfs/ntfs.h | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diffs (31 lines):
diff -r 5c66bd8d9cd3 -r f07943f57e2e sys/ntfs/ntfs.h
--- a/sys/ntfs/ntfs.h Sat Sep 11 15:34:45 1999 +0000
+++ b/sys/ntfs/ntfs.h Sat Sep 11 15:55:12 1999 +0000
@@ -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 @@
#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 @@
cn_t ntm_cfree;
struct ntvattrdef *ntm_ad;
int ntm_adnum;
+ struct netexport ntm_export; /* export information */
};
#define ntm_mftcn ntm_bootfile.bf_mftcn
Home |
Main Index |
Thread Index |
Old Index