svn commit: r274906 - in head/sys/ufs: ffs ufs

Gleb Smirnoff glebius at FreeBSD.org
Sun Nov 23 01:01:15 UTC 2014


Author: glebius
Date: Sun Nov 23 01:01:14 2014
New Revision: 274906
URL: https://svnweb.freebsd.org/changeset/base/274906

Log:
  Include required files directly instead of pollution via ufs/ufsmount.h.
  
  Sponsored by:	Nginx, Inc.

Modified:
  head/sys/ufs/ffs/ffs_suspend.c
  head/sys/ufs/ufs/ufs_acl.c
  head/sys/ufs/ufs/ufs_gjournal.c

Modified: head/sys/ufs/ffs/ffs_suspend.c
==============================================================================
--- head/sys/ufs/ffs/ffs_suspend.c	Sun Nov 23 00:30:32 2014	(r274905)
+++ head/sys/ufs/ffs/ffs_suspend.c	Sun Nov 23 01:01:14 2014	(r274906)
@@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/buf.h>
 #include <sys/ioccom.h>
 #include <sys/mount.h>
 #include <sys/vnode.h>

Modified: head/sys/ufs/ufs/ufs_acl.c
==============================================================================
--- head/sys/ufs/ufs/ufs_acl.c	Sun Nov 23 00:30:32 2014	(r274905)
+++ head/sys/ufs/ufs/ufs_acl.c	Sun Nov 23 01:01:14 2014	(r274906)
@@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/acl.h>
 #include <sys/event.h>
 #include <sys/extattr.h>
+#include <sys/proc.h>
 
 #include <ufs/ufs/quota.h>
 #include <ufs/ufs/inode.h>

Modified: head/sys/ufs/ufs/ufs_gjournal.c
==============================================================================
--- head/sys/ufs/ufs/ufs_gjournal.c	Sun Nov 23 00:30:32 2014	(r274905)
+++ head/sys/ufs/ufs/ufs_gjournal.c	Sun Nov 23 01:01:14 2014	(r274906)
@@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/buf.h>
 #include <sys/kernel.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>


More information about the svn-src-head mailing list