new format for prototypes; more precise comments
[unix-history] / usr / src / sys / ufs / ffs / ufsmount.h
CommitLineData
da7c5cc6 1/*
e9720568
KM
2 * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
3 * All rights reserved.
da7c5cc6 4 *
b702c21d 5 * %sccs.include.redist.c%
e9720568 6 *
39d8dfcc 7 * @(#)ufsmount.h 7.9 (Berkeley) %G%
da7c5cc6 8 */
8469a387
BJ
9
10/*
39d8dfcc 11 * This structure describes the UFS specific mount structure data.
8469a387 12 */
e9720568
KM
13struct ufsmount {
14 struct mount *um_mountp; /* vfs structure for this filesystem */
15 dev_t um_dev; /* device mounted */
16 struct vnode *um_devvp; /* vnode for block device mounted */
17 struct fs *um_fs; /* pointer to superblock */
ff9af398
KM
18 struct vnode *um_quotas[MAXQUOTAS]; /* pointer to quota files */
19 struct ucred *um_cred[MAXQUOTAS]; /* cred for access to quota file */
20 time_t um_btime[MAXQUOTAS]; /* block quota time limit */
21 time_t um_itime[MAXQUOTAS]; /* inode quota time limit */
22 char um_qflags[MAXQUOTAS]; /* quota specific flags, see below */
9f7af618 23};
e9720568 24/*
ff9af398 25 * Flags describing the state of quotas.
e9720568 26 */
ff9af398
KM
27#define QTF_OPENING 0x01 /* Q_QUOTAON in progress */
28#define QTF_CLOSING 0x02 /* Q_QUOTAOFF in progress */
e9720568 29
ff9af398 30#ifdef KERNEL
e9720568 31/*
ff9af398 32 * Convert mount ptr to ufsmount ptr.
e9720568 33 */
82161bc8 34#define VFSTOUFS(mp) ((struct ufsmount *)((mp)->mnt_data))
ff9af398 35#endif /* KERNEL */
1760981e
KM
36
37/*
38 * Prototypes for UFS mount operations
39 */
39d8dfcc
KM
40int ufs_mount __P((struct mount *mp, char *path, caddr_t data,
41 struct nameidata *ndp, struct proc *p));
42int ufs_start __P((struct mount *mp, int flags, struct proc *p));
43int ufs_unmount __P((struct mount *mp, int mntflags, struct proc *p));
44int ufs_root __P((struct mount *mp, struct vnode **vpp));
45int ufs_quotactl __P((struct mount *mp, int cmds, int uid, /* should be uid_t */
46 caddr_t arg, struct proc *p));
47int ufs_statfs __P((struct mount *mp, struct statfs *sbp, struct proc *p));
48int ufs_sync __P((struct mount *mp, int waitfor));
49int ufs_fhtovp __P((struct mount *mp, struct fid *fhp, struct vnode **vpp));
50int ufs_vptofh __P((struct vnode *vp, struct fid *fhp));
51int ufs_init __P(());