a509050bd3
Introduce a replacement for the in-kernel portmapper client that supports all 3 versions of the rpcbind protocol. This code is not used yet. Original code by Groupe Bull updated for the latest kernel, with multiple bug fixes. Note that rpcb_clnt.c does not yet support registering via versions 3 and 4 of the rpcbind protocol. That is planned for a later patch. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
16 lines
412 B
Makefile
16 lines
412 B
Makefile
#
|
|
# Makefile for Linux kernel SUN RPC
|
|
#
|
|
|
|
|
|
obj-$(CONFIG_SUNRPC) += sunrpc.o
|
|
obj-$(CONFIG_SUNRPC_GSS) += auth_gss/
|
|
|
|
sunrpc-y := clnt.o xprt.o socklib.o xprtsock.o sched.o \
|
|
auth.o auth_null.o auth_unix.o \
|
|
svc.o svcsock.o svcauth.o svcauth_unix.o \
|
|
pmap_clnt.o rpcb_clnt.o timer.o xdr.o \
|
|
sunrpc_syms.o cache.o rpc_pipe.o
|
|
sunrpc-$(CONFIG_PROC_FS) += stats.o
|
|
sunrpc-$(CONFIG_SYSCTL) += sysctl.o
|