fdda387f73
The following patch adds a TCP based communications layer to the DLM which is compile time selectable. The existing SCTP layer gives the advantage of allowing multihoming, whereas the TCP layer has been heavily tested in previous versions of the DLM and is known to be robust and therefore can be used as a baseline for performance testing. Signed-off-by: Patrick Caulfield <pcaulfie@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
21 lines
380 B
Makefile
21 lines
380 B
Makefile
obj-$(CONFIG_DLM) += dlm.o
|
|
dlm-y := ast.o \
|
|
config.o \
|
|
dir.o \
|
|
lock.o \
|
|
lockspace.o \
|
|
main.o \
|
|
member.o \
|
|
memory.o \
|
|
midcomms.o \
|
|
rcom.o \
|
|
recover.o \
|
|
recoverd.o \
|
|
requestqueue.o \
|
|
user.o \
|
|
util.o
|
|
dlm-$(CONFIG_DLM_DEBUG) += debug_fs.o
|
|
|
|
dlm-$(CONFIG_DLM_TCP) += lowcomms-tcp.o
|
|
|
|
dlm-$(CONFIG_DLM_SCTP) += lowcomms-sctp.o
|