1997-10-03 23:54:07 +04:00
|
|
|
/* $NetBSD: nfsfh.h,v 1.4 1997/10/03 19:54:45 christos Exp $ */
|
1995-03-06 22:09:42 +03:00
|
|
|
|
1995-03-06 14:55:03 +03:00
|
|
|
/*
|
1997-10-03 23:54:07 +04:00
|
|
|
* Header: nfsfh.h,v 1.6 96/12/16 03:40:31 leres Exp
|
1995-03-06 14:55:03 +03:00
|
|
|
*
|
|
|
|
* nfsfh.h - NFS file handle definitions (for portable use)
|
|
|
|
*
|
|
|
|
* Jeffrey C. Mogul
|
|
|
|
* Digital Equipment Corporation
|
|
|
|
* Western Research Laboratory
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal representation of dev_t, because different NFS servers
|
|
|
|
* that we might be spying upon use different external representations.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
1997-10-03 23:54:07 +04:00
|
|
|
u_int32_t Minor; /* upper case to avoid clashing with macro names */
|
|
|
|
u_int32_t Major;
|
1995-03-06 14:55:03 +03:00
|
|
|
} my_devt;
|
|
|
|
|
|
|
|
#define dev_eq(a,b) ((a.Minor == b.Minor) && (a.Major == b.Major))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Many file servers now use a large file system ID. This is
|
|
|
|
* our internal representation of that.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
1997-10-03 23:54:07 +04:00
|
|
|
my_devt Fsid_dev; /* XXX avoid name conflict with AIX */
|
|
|
|
u_int32_t fsid_code;
|
1995-03-06 14:55:03 +03:00
|
|
|
} my_fsid;
|
|
|
|
|
|
|
|
#define fsid_eq(a,b) ((a.fsid_code == b.fsid_code) &&\
|
1997-10-03 23:54:07 +04:00
|
|
|
dev_eq(a.Fsid_dev, b.Fsid_dev))
|
1995-03-06 14:55:03 +03:00
|
|
|
|
1996-05-20 04:41:00 +04:00
|
|
|
extern void Parse_fh(caddr_t *, int, my_fsid *, ino_t *, char **, char **, int);
|