00d3b7a453
Add security support to the AFS filesystem. Kerberos IV tickets are added as RxRPC keys are added to the session keyring with the klog program. open() and other VFS operations then find this ticket with request_key() and either use it immediately (eg: mkdir, unlink) or attach it to a file descriptor (open). Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
27 lines
316 B
Makefile
27 lines
316 B
Makefile
#
|
|
# Makefile for Red Hat Linux AFS client.
|
|
#
|
|
|
|
kafs-objs := \
|
|
callback.o \
|
|
cell.o \
|
|
cmservice.o \
|
|
dir.o \
|
|
file.o \
|
|
fsclient.o \
|
|
inode.o \
|
|
main.o \
|
|
misc.o \
|
|
mntpt.o \
|
|
proc.o \
|
|
rxrpc.o \
|
|
security.o \
|
|
server.o \
|
|
super.o \
|
|
vlclient.o \
|
|
vlocation.o \
|
|
vnode.o \
|
|
volume.o
|
|
|
|
obj-$(CONFIG_AFS_FS) := kafs.o
|