svn commit: r187673 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb net

Antoine Brodin antoine at FreeBSD.org
Sat Jan 24 10:57:23 PST 2009


Author: antoine
Date: Sat Jan 24 18:57:22 2009
New Revision: 187673
URL: http://svn.freebsd.org/changeset/base/187673

Log:
  MFC r181137 to stable/7:
    Remove trailing ';' in BPFD_LOCK_ASSERT macro.
  
    MFC after:      1 month
    X-MFC-to:       stable/7, stable/6 has it right

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/ath/ath_hal/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/net/bpfdesc.h

Modified: stable/7/sys/net/bpfdesc.h
==============================================================================
--- stable/7/sys/net/bpfdesc.h	Sat Jan 24 18:23:19 2009	(r187672)
+++ stable/7/sys/net/bpfdesc.h	Sat Jan 24 18:57:22 2009	(r187673)
@@ -102,7 +102,7 @@ struct bpf_d {
 
 #define BPFD_LOCK(bd)		mtx_lock(&(bd)->bd_mtx)
 #define BPFD_UNLOCK(bd)		mtx_unlock(&(bd)->bd_mtx)
-#define BPFD_LOCK_ASSERT(bd)	mtx_assert(&(bd)->bd_mtx, MA_OWNED);
+#define BPFD_LOCK_ASSERT(bd)	mtx_assert(&(bd)->bd_mtx, MA_OWNED)
 
 /* Test whether a BPF is ready for read(). */
 #define	bpf_ready(bd)						 \


More information about the svn-src-stable mailing list