From 54bf4ddfa2a9af2fd33eedd42f37c20e8dcaff31 Mon Sep 17 00:00:00 2001 From: mckusick Date: Wed, 11 Apr 2012 22:43:40 +0000 Subject: Whitespace cleanup. --- sys/sys/mount.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys') 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)); \ -- cgit v1.1