forked from luck/tmp_suning_uos_patched
648af7fca1
Absorb the rxkad security module into the af_rxrpc module so that there's only one module file. This avoids a circular dependency whereby rxkad pins af_rxrpc and cached connections pin rxkad but can't be manually evicted (they will expire eventually and cease pinning). With this change, af_rxrpc can just be unloaded, despite having cached connections. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
29 lines
455 B
Makefile
29 lines
455 B
Makefile
#
|
|
# Makefile for Linux kernel RxRPC
|
|
#
|
|
|
|
af-rxrpc-y := \
|
|
af_rxrpc.o \
|
|
ar-accept.o \
|
|
ar-ack.o \
|
|
ar-call.o \
|
|
ar-connection.o \
|
|
ar-connevent.o \
|
|
ar-error.o \
|
|
ar-input.o \
|
|
ar-key.o \
|
|
ar-local.o \
|
|
ar-output.o \
|
|
ar-peer.o \
|
|
ar-recvmsg.o \
|
|
ar-security.o \
|
|
ar-skbuff.o \
|
|
ar-transport.o \
|
|
misc.o
|
|
|
|
af-rxrpc-$(CONFIG_PROC_FS) += ar-proc.o
|
|
af-rxrpc-$(CONFIG_RXKAD) += rxkad.o
|
|
af-rxrpc-$(CONFIG_SYSCTL) += sysctl.o
|
|
|
|
obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o
|