freebsd-dev/sys/modules/nfslock/Makefile
Rick Macklem f92bbff248 Move sys/nfsclient/nfs_lock.c into sys/nfs and build it as a separate
module that can be used by both the regular and experimental nfs
clients. This fixes the problem reported by jh@ where /dev/nfslock
would be registered twice when both nfs clients were used.
I also defined the size of the lm_fh field to be the correct value,
as it should be the maximum size of an NFSv3 file handle.

Reviewed by:	jh
MFC after:	2 weeks
2010-07-24 22:11:11 +00:00

10 lines
123 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../nfs
KMOD= nfslock
SRCS= vnode_if.h \
nfs_lock.c \
opt_nfs.h
.include <bsd.kmod.mk>