svn commit: r300870 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

Garrett Cooper ngie at FreeBSD.org
Fri May 27 20:33:39 UTC 2016


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>


More information about the svn-src-all mailing list