summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2008-08-05 15:24:07 +0000
committerdes <des@FreeBSD.org>2008-08-05 15:24:07 +0000
commitf42aa30836975cb77d62d14efad30fd7c3cc2f4e (patch)
tree2b569c77ee3ba5003fb596ab050ce9705f5930bf
parentc4f7fdb2530a4417eddee02e27cb6cc7ecd47905 (diff)
downloadFreeBSD-src-f42aa30836975cb77d62d14efad30fd7c3cc2f4e.zip
FreeBSD-src-f42aa30836975cb77d62d14efad30fd7c3cc2f4e.tar.gz
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)
-rw-r--r--sys/ufs/ufs/quota.h4
-rw-r--r--sys/ufs/ufs/ufsmount.h10
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/ufs/ufs/quota.h b/sys/ufs/ufs/quota.h
index 42c59fe..28f4e92 100644
--- a/sys/ufs/ufs/quota.h
+++ b/sys/ufs/ufs/quota.h
@@ -123,9 +123,9 @@ struct dquot {
u_int16_t dq_type; /* quota type of this dquot */
u_int32_t dq_cnt; /* (h) count of active references */
u_int32_t dq_id; /* identifier this applies to */
- struct ufsmount *dq_ump; /* (h) filesystem that this is
+ struct ufsmount *dq_ump; /* (h) filesystem that this is
taken from */
- struct dqblk dq_dqb; /* actual usage & quotas */
+ struct dqblk dq_dqb; /* actual usage & quotas */
};
/*
* Flag values.
diff --git a/sys/ufs/ufs/ufsmount.h b/sys/ufs/ufs/ufsmount.h
index 5057991..50a0941 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 */
OpenPOWER on IntegriCloud