svn commit: r270898 - stable/10/sys/fs/autofs
Edward Tomasz Napierala
trasz at FreeBSD.org
Sun Aug 31 21:49:46 UTC 2014
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);
More information about the svn-src-stable
mailing list