b7fa0554cf
This adds acl support fo nfs clients via the NFSACL protocol extension, by implementing the getxattr, listxattr, setxattr, and removexattr iops for the system.posix_acl_access and system.posix_acl_default attributes. This patch implements a dumb version that uses no caching (and thus adds some overhead). (Another patch in this patchset adds caching as well.) Signed-off-by: Andreas Gruenbacher <agruen@suse.de> Acked-by: Olaf Kirch <okir@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
16 lines
537 B
Makefile
16 lines
537 B
Makefile
#
|
|
# Makefile for the Linux nfs filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_NFS_FS) += nfs.o
|
|
|
|
nfs-y := dir.o file.o inode.o nfs2xdr.o pagelist.o \
|
|
proc.o read.o symlink.o unlink.o write.o
|
|
nfs-$(CONFIG_ROOT_NFS) += nfsroot.o mount_clnt.o
|
|
nfs-$(CONFIG_NFS_V3) += nfs3proc.o nfs3xdr.o
|
|
nfs-$(CONFIG_NFS_V3_ACL) += nfs3acl.o
|
|
nfs-$(CONFIG_NFS_V4) += nfs4proc.o nfs4xdr.o nfs4state.o nfs4renewd.o \
|
|
delegation.o idmap.o \
|
|
callback.o callback_xdr.o callback_proc.o
|
|
nfs-$(CONFIG_NFS_DIRECTIO) += direct.o
|
|
nfs-objs := $(nfs-y)
|