aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/ufs/ufsmount.h
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2008-08-05 15:24:07 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2008-08-05 15:24:07 +0000
commit20ed1beeb5e72521d48779f5dc5e63033ac17c9e (patch)
tree2b569c77ee3ba5003fb596ab050ce9705f5930bf /sys/ufs/ufs/ufsmount.h
parent1ac541a69a8f584534b7be2e1068e1adb6f9d8cb (diff)
downloadsrc-20ed1beeb5e72521d48779f5dc5e63033ac17c9e.tar.gz
src-20ed1beeb5e72521d48779f5dc5e63033ac17c9e.zip
ufsmount.h uses "struct\tfoo *bar;", except where it doesn't.
quota.h uses "struct foo\t*bar;", except where it doesn't. Try to make them both agree with themselves (though not with eachother)
Notes
Notes: svn path=/head/; revision=181329
Diffstat (limited to 'sys/ufs/ufs/ufsmount.h')
-rw-r--r--sys/ufs/ufs/ufsmount.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/ufs/ufs/ufsmount.h b/sys/ufs/ufs/ufsmount.h
index 5057991db514..50a0941c0c80 100644
--- a/sys/ufs/ufs/ufsmount.h
+++ b/sys/ufs/ufs/ufsmount.h
@@ -61,9 +61,9 @@ struct ufs_extattr_per_mount;
/* This structure describes the UFS specific mount structure data. */
struct ufsmount {
struct mount *um_mountp; /* filesystem vfs structure */
- struct cdev *um_dev; /* device mounted */
- struct g_consumer *um_cp;
- struct bufobj *um_bo; /* Buffer cache object */
+ struct cdev *um_dev; /* device mounted */
+ struct g_consumer *um_cp;
+ struct bufobj *um_bo; /* Buffer cache object */
struct vnode *um_devvp; /* block device mounted vnode */
u_long um_fstype; /* type of filesystem */
struct fs *um_fs; /* pointer to superblock */
@@ -73,8 +73,8 @@ struct ufsmount {
u_long um_seqinc; /* inc between seq blocks */
struct mtx um_lock; /* Protects ufsmount & fs */
long um_numindirdeps; /* outstanding indirdeps */
- struct workhead softdep_workitem_pending; /* softdep work queue */
- struct worklist *softdep_worklist_tail; /* Tail pointer for above */
+ struct workhead softdep_workitem_pending; /* softdep work queue */
+ struct worklist *softdep_worklist_tail; /* Tail pointer for above */
int softdep_on_worklist; /* Items on the worklist */
int softdep_on_worklist_inprogress; /* Busy items on worklist */
int softdep_deps; /* Total dependency count */