Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 May 2016 20:33:38 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r300870 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs
Message-ID:  <201605272033.u4RKXcWx043385@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Fri May 27 20:33:38 2016
New Revision: 300870
URL: https://svnweb.freebsd.org/changeset/base/300870

Log:
  Unbreak the zfs(4) build
  
  vm/vm_pageout.h grew a dependency on the bool typedef in r300865
  
  arc.c didn't include sys/types.h, which included the definition for the typedef
  
  Other items (ofed, drm2) might need to be chased for this commit.
  
  X-MFC with: r300865
  MFC after: 1 week
  Pointyhat to: alc
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c	Fri May 27 20:33:14 2016	(r300869)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c	Fri May 27 20:33:38 2016	(r300870)
@@ -120,6 +120,7 @@
  *	- ARC header release, as it removes from L2ARC buflists
  */
 
+#include <sys/types.h>
 #include <sys/spa.h>
 #include <sys/zio.h>
 #include <sys/zio_compress.h>



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