Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43282
b: refs/heads/master
c: fdda387
h: refs/heads/master
v: v3
  • Loading branch information
Patrick Caulfield authored and Steven Whitehouse committed Nov 30, 2006
1 parent fa6a3f8 commit cfa93ac
Show file tree
Hide file tree
Showing 5 changed files with 1,284 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 61057c6bb3a3d14cf2bea6ca20dc6d367e1d852e
refs/heads/master: fdda387f73947e6ae511ec601f5b3c6fbb582aac
17 changes: 17 additions & 0 deletions trunk/fs/dlm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ config DLM
A general purpose distributed lock manager for kernel or userspace
applications.

choice
prompt "Select DLM communications protocol"
depends on DLM
default DLM_TCP
help
The DLM Can use TCP or SCTP for it's network communications.
SCTP supports multi-homed operations whereas TCP doesn't.
However, SCTP seems to have stability problems at the moment.

config DLM_TCP
bool "TCP/IP"

config DLM_SCTP
bool "SCTP"

endchoice

config DLM_DEBUG
bool "DLM debugging"
depends on DLM
Expand Down
4 changes: 3 additions & 1 deletion trunk/fs/dlm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ dlm-y := ast.o \
dir.o \
lock.o \
lockspace.o \
lowcomms.o \
main.o \
member.o \
memory.o \
Expand All @@ -17,3 +16,6 @@ dlm-y := ast.o \
util.o
dlm-$(CONFIG_DLM_DEBUG) += debug_fs.o

dlm-$(CONFIG_DLM_TCP) += lowcomms-tcp.o

dlm-$(CONFIG_DLM_SCTP) += lowcomms-sctp.o
File renamed without changes.
Loading

0 comments on commit cfa93ac

Please sign in to comment.