mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
Now that all NLMv4 server-side procedures use XDR encoder and decoder functions generated by xdrgen, the hand-written code in fs/lockd/xdr4.c is no longer needed. This file contained the original XDR processing logic that has been systematically replaced throughout this series. Remove the file and its Makefile reference to eliminate the dead code. The helper function nlm4svc_set_file_lock_range() is still needed by the generated code, so move it to xdr4.h as an inline function where it remains accessible. Reviewed-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux lock manager stuff
|
|
#
|
|
|
|
ccflags-y += -I$(src) # needed for trace events
|
|
|
|
obj-$(CONFIG_LOCKD) += lockd.o
|
|
|
|
lockd-y := clntlock.o clntproc.o clntxdr.o host.o svc.o svclock.o \
|
|
svcshare.o svcproc.o svcsubs.o mon.o trace.o xdr.o netlink.o
|
|
lockd-$(CONFIG_LOCKD_V4) += clnt4xdr.o svc4proc.o nlm4xdr_gen.o
|
|
lockd-$(CONFIG_PROC_FS) += procfs.o
|
|
|
|
#
|
|
# XDR code generation (requires Python and additional packages)
|
|
#
|
|
# The generated *xdr_gen.{h,c} files are checked into git. Normal kernel
|
|
# builds do not require the xdrgen tool or its Python dependencies.
|
|
#
|
|
# Developers modifying .x files in Documentation/sunrpc/xdr/ should run
|
|
# "make xdrgen" to regenerate the affected files.
|
|
#
|
|
.PHONY: xdrgen
|
|
|
|
XDRGEN = ../../tools/net/sunrpc/xdrgen/xdrgen
|
|
|
|
XDRGEN_DEFINITIONS = ../../include/linux/sunrpc/xdrgen/nlm4.h
|
|
XDRGEN_DECLARATIONS = nlm4xdr_gen.h
|
|
XDRGEN_SOURCE = nlm4xdr_gen.c
|
|
|
|
xdrgen: $(XDRGEN_DEFINITIONS) $(XDRGEN_DECLARATIONS) $(XDRGEN_SOURCE)
|
|
|
|
../../include/linux/sunrpc/xdrgen/nlm4.h: ../../Documentation/sunrpc/xdr/nlm4.x
|
|
$(XDRGEN) definitions $< > $@
|
|
|
|
nlm4xdr_gen.h: ../../Documentation/sunrpc/xdr/nlm4.x
|
|
$(XDRGEN) declarations $< > $@
|
|
|
|
nlm4xdr_gen.c: ../../Documentation/sunrpc/xdr/nlm4.x
|
|
$(XDRGEN) source --peer server $< > $@
|