MFC r270281:

Fix includes.

Suggested by:	pluknet@
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
trasz 2014-08-31 21:49:45 +00:00
parent ab3fae8a9e
commit 87f90af6e4
3 changed files with 4 additions and 4 deletions

View File

@ -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");

View File

@ -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

View File

@ -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);