svn commit: r270281 - head/sys/fs/autofs
Edward Tomasz Napierala
trasz at FreeBSD.org
Thu Aug 21 15:59:27 UTC 2014
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);
More information about the svn-src-all
mailing list