summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2014-08-31 21:49:45 +0000
committertrasz <trasz@FreeBSD.org>2014-08-31 21:49:45 +0000
commit87f90af6e4825d0640770331d4a17eb12fa2625b (patch)
tree5e78d401280563d2df0bd2d4b0c547d7e8bcaabc /sys/fs
parentab3fae8a9efadf544e2294cc0a373cb61be4ff84 (diff)
downloadFreeBSD-src-87f90af6e4825d0640770331d4a17eb12fa2625b.zip
FreeBSD-src-87f90af6e4825d0640770331d4a17eb12fa2625b.tar.gz
MFC r270281:
Fix includes. Suggested by: pluknet@ Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/autofs/autofs.c4
-rw-r--r--sys/fs/autofs/autofs_vfsops.c2
-rw-r--r--sys/fs/autofs/autofs_vnops.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/autofs/autofs.c b/sys/fs/autofs/autofs.c
index f2dd775..d3ea03d 100644
--- a/sys/fs/autofs/autofs.c
+++ b/sys/fs/autofs/autofs.c
@@ -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");
diff --git a/sys/fs/autofs/autofs_vfsops.c b/sys/fs/autofs/autofs_vfsops.c
index d7479e6..74d2334 100644
--- a/sys/fs/autofs/autofs_vfsops.c
+++ b/sys/fs/autofs/autofs_vfsops.c
@@ -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
diff --git a/sys/fs/autofs/autofs_vnops.c b/sys/fs/autofs/autofs_vnops.c
index f1c96b4..3427a62 100644
--- a/sys/fs/autofs/autofs_vnops.c
+++ b/sys/fs/autofs/autofs_vnops.c
@@ -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);
OpenPOWER on IntegriCloud