Fix includes.

Suggested by:	pluknet@
MFC after:	2 weeks
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2014-08-21 15:59:25 +00:00
parent 52ff33d967
commit f5440d1a9d
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);