Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Aug 2014 15:59:26 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270281 - head/sys/fs/autofs
Message-ID:  <201408211559.s7LFxQXJ041493@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Thu Aug 21 15:59:25 2014
New Revision: 270281
URL: http://svnweb.freebsd.org/changeset/base/270281

Log:
  Fix includes.
  
  Suggested by:	pluknet@
  MFC after:	2 weeks
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/fs/autofs/autofs.c
  head/sys/fs/autofs/autofs_vfsops.c
  head/sys/fs/autofs/autofs_vnops.c

Modified: head/sys/fs/autofs/autofs.c
==============================================================================
--- head/sys/fs/autofs/autofs.c	Thu Aug 21 15:55:18 2014	(r270280)
+++ head/sys/fs/autofs/autofs.c	Thu Aug 21 15:59:25 2014	(r270281)
@@ -80,8 +80,8 @@
 #include <machine/atomic.h>
 #include <vm/uma.h>
 
-#include "autofs.h"
-#include "autofs_ioctl.h"
+#include <fs/autofs/autofs.h>
+#include <fs/autofs/autofs_ioctl.h>
 
 MALLOC_DEFINE(M_AUTOFS, "autofs", "Automounter filesystem");
 

Modified: head/sys/fs/autofs/autofs_vfsops.c
==============================================================================
--- head/sys/fs/autofs/autofs_vfsops.c	Thu Aug 21 15:55:18 2014	(r270280)
+++ head/sys/fs/autofs/autofs_vfsops.c	Thu Aug 21 15:59:25 2014	(r270281)
@@ -42,7 +42,7 @@
 #include <sys/sx.h>
 #include <sys/vnode.h>
 
-#include "autofs.h"
+#include <fs/autofs/autofs.h>
 
 static const char *autofs_opts[] = {
 	"from", "master_options", "master_prefix", NULL

Modified: head/sys/fs/autofs/autofs_vnops.c
==============================================================================
--- head/sys/fs/autofs/autofs_vnops.c	Thu Aug 21 15:55:18 2014	(r270280)
+++ head/sys/fs/autofs/autofs_vnops.c	Thu Aug 21 15:59:25 2014	(r270281)
@@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$");
 #include <machine/atomic.h>
 #include <vm/uma.h>
 
-#include "autofs.h"
+#include <fs/autofs/autofs.h>
 
 static int	autofs_trigger_vn(struct vnode *vp, const char *path,
 		    int pathlen, struct vnode **newvp);



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