Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Aug 2014 21:49:45 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r270898 - stable/10/sys/fs/autofs
Message-ID:  <201408312149.s7VLnjab087998@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Sun Aug 31 21:49:45 2014
New Revision: 270898
URL: http://svnweb.freebsd.org/changeset/base/270898

Log:
  MFC r270281:
  
  Fix includes.
  
  Suggested by:	pluknet@
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/10/sys/fs/autofs/autofs.c
  stable/10/sys/fs/autofs/autofs_vfsops.c
  stable/10/sys/fs/autofs/autofs_vnops.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/fs/autofs/autofs.c
==============================================================================
--- stable/10/sys/fs/autofs/autofs.c	Sun Aug 31 21:48:12 2014	(r270897)
+++ stable/10/sys/fs/autofs/autofs.c	Sun Aug 31 21:49:45 2014	(r270898)
@@ -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: stable/10/sys/fs/autofs/autofs_vfsops.c
==============================================================================
--- stable/10/sys/fs/autofs/autofs_vfsops.c	Sun Aug 31 21:48:12 2014	(r270897)
+++ stable/10/sys/fs/autofs/autofs_vfsops.c	Sun Aug 31 21:49:45 2014	(r270898)
@@ -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: stable/10/sys/fs/autofs/autofs_vnops.c
==============================================================================
--- stable/10/sys/fs/autofs/autofs_vnops.c	Sun Aug 31 21:48:12 2014	(r270897)
+++ stable/10/sys/fs/autofs/autofs_vnops.c	Sun Aug 31 21:49:45 2014	(r270898)
@@ -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?201408312149.s7VLnjab087998>