svn commit: r234157 - head/sys/sys

Kirk McKusick mckusick at FreeBSD.org
Wed Apr 11 22:43:41 UTC 2012


Author: mckusick
Date: Wed Apr 11 22:43:40 2012
New Revision: 234157
URL: http://svn.freebsd.org/changeset/base/234157

Log:
  Whitespace cleanup.

Modified:
  head/sys/sys/mount.h

Modified: head/sys/sys/mount.h
==============================================================================
--- head/sys/sys/mount.h	Wed Apr 11 22:23:50 2012	(r234156)
+++ head/sys/sys/mount.h	Wed Apr 11 22:43:40 2012	(r234157)
@@ -199,10 +199,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)
@@ -211,7 +211,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-all mailing list