Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Jan 2009 18:57:22 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r187673 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb net
Message-ID:  <200901241857.n0OIvMxY095940@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)						 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901241857.n0OIvMxY095940>