svn commit: r188377 - in stable/7/sys: . contrib/pf dev/cxgb dev/fxp

Pyun YongHyeon yongari at FreeBSD.org
Sun Feb 8 19:58:30 PST 2009


Author: yongari
Date: Mon Feb  9 03:58:29 2009
New Revision: 188377
URL: http://svn.freebsd.org/changeset/base/188377

Log:
  MFC r185758:
    mutex.h is needed here. It got it by namespace pollution.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/dev/fxp/if_fxp.c

Modified: stable/7/sys/dev/fxp/if_fxp.c
==============================================================================
--- stable/7/sys/dev/fxp/if_fxp.c	Mon Feb  9 03:55:51 2009	(r188376)
+++ stable/7/sys/dev/fxp/if_fxp.c	Mon Feb  9 03:58:29 2009	(r188377)
@@ -44,7 +44,9 @@ __FBSDID("$FreeBSD$");
 #include <sys/endian.h>
 #include <sys/kernel.h>
 #include <sys/mbuf.h>
+#include <sys/lock.h>
 #include <sys/module.h>
+#include <sys/mutex.h>
 #include <sys/rman.h>
 #include <sys/socket.h>
 #include <sys/sockio.h>


More information about the svn-src-stable mailing list