Date: Mon, 9 Feb 2009 03:58:29 +0000 (UTC) From: Pyun YongHyeon <yongari@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: r188377 - in stable/7/sys: . contrib/pf dev/cxgb dev/fxp Message-ID: <200902090358.n193wTZh044659@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902090358.n193wTZh044659>