File: [Development] / xfs-linux-nodel / Attic / xfs_clnt.h (download)
Revision 1.5, Fri Dec 23 23:41:29 1994 UTC (22 years, 10 months ago) by ajs
Branch: MAIN
Changes since 1.4: +11 -1
lines
Add irix5_xfs_args definition for use in copying in to
a 64 bit kernel.
|
#ifndef __SYS_XFS_CLNT_H__
#define __SYS_XFS_CLNT_H__
/**************************************************************************
* *
* Copyright (C) 1993, Silicon Graphics, Inc. *
* *
* These coded instructions, statements, and computer programs contain *
* unpublished proprietary information of Silicon Graphics, Inc., and *
* are protected by Federal copyright law. They may not be disclosed *
* to third parties or copied or duplicated in any form, in whole or *
* in part, without the prior written consent of Silicon Graphics, Inc. *
* *
**************************************************************************/
#ident "$Revision: 1.4 $"
/*
* XFS arguments to the mount system call.
*/
struct xfs_args {
int version; /* version of this */
int flags; /* flags */
int logbufs; /* Number of log buffers */
int logbufsize; /* Size of log buffers */
char *fsname; /* filesystem name */
};
#ifdef _KERNEL
struct irix5_xfs_args {
__int32_t version;
__int32_t flags;
__int32_t logbufs;
__int32_t logbufsize;
app32_ptr_t fsname;
};
#endif /* _KERNEL */
/*
* XFS mount option flags
*/
#define XFSMNT_CHKLOG 0x0001 /* check log */
#define XFSMNT_WSYNC 0x0002 /* safe mode nfs mount compatible */
#endif /* !__SYS_XFS_CLNT_H__ */