summaryrefslogtreecommitdiffstats
path: root/sys/sys/mount.h
diff options
context:
space:
mode:
authormckusick <mckusick@FreeBSD.org>2012-04-11 22:43:40 +0000
committermckusick <mckusick@FreeBSD.org>2012-04-11 22:43:40 +0000
commit54bf4ddfa2a9af2fd33eedd42f37c20e8dcaff31 (patch)
tree014606eedd7c83d200620f9e218f3f01a5f3dcef /sys/sys/mount.h
parentd89ad2c78a999e0bee2d4e8253116d3e4e14ea3a (diff)
downloadFreeBSD-src-54bf4ddfa2a9af2fd33eedd42f37c20e8dcaff31.zip
FreeBSD-src-54bf4ddfa2a9af2fd33eedd42f37c20e8dcaff31.tar.gz
Whitespace cleanup.
Diffstat (limited to 'sys/sys/mount.h')
-rw-r--r--sys/sys/mount.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index 2a3c4a4..56848d9 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -199,10 +199,10 @@ void __mnt_vnode_markerfree(struct vnode **mvp, struct mount *mp);
__mnt_vnode_markerfree(&(mvp), (mp))
#define MNT_VNODE_FOREACH_ABORT(mp, mvp) \
- do { \
- MNT_ILOCK(mp); \
- MNT_VNODE_FOREACH_ABORT_ILOCKED(mp, mvp); \
- MNT_IUNLOCK(mp); \
+ do { \
+ MNT_ILOCK(mp); \
+ MNT_VNODE_FOREACH_ABORT_ILOCKED(mp, mvp); \
+ MNT_IUNLOCK(mp); \
} while (0)
#define MNT_ILOCK(mp) mtx_lock(&(mp)->mnt_mtx)
@@ -211,7 +211,7 @@ void __mnt_vnode_markerfree(struct vnode **mvp, struct mount *mp);
#define MNT_MTX(mp) (&(mp)->mnt_mtx)
#define MNT_REF(mp) (mp)->mnt_ref++
#define MNT_REL(mp) do { \
- KASSERT((mp)->mnt_ref > 0, ("negative mnt_ref")); \
+ KASSERT((mp)->mnt_ref > 0, ("negative mnt_ref")); \
(mp)->mnt_ref--; \
if ((mp)->mnt_ref == 0) \
wakeup((mp)); \
OpenPOWER on IntegriCloud