svn commit: r234472 - in stable/8/sys: i386/conf sys
Kirk McKusick
mckusick at FreeBSD.org
Thu Apr 19 22:37:25 UTC 2012
Author: mckusick
Date: Thu Apr 19 22:37:24 2012
New Revision: 234472
URL: http://svn.freebsd.org/changeset/base/234472
Log:
MFC of 234157:
Whitespace cleanup.
Modified:
stable/8/sys/sys/mount.h
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/boot/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/e1000/ (props changed)
stable/8/sys/i386/conf/XENHVM (props changed)
Modified: stable/8/sys/sys/mount.h
==============================================================================
--- stable/8/sys/sys/mount.h Thu Apr 19 22:28:42 2012 (r234471)
+++ stable/8/sys/sys/mount.h Thu Apr 19 22:37:24 2012 (r234472)
@@ -201,10 +201,10 @@ void __mnt_vnode_markerfree(str
__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)
@@ -213,7 +213,7 @@ void __mnt_vnode_markerfree(str
#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)); \
More information about the svn-src-stable-8
mailing list