diff options
author | Alexander Aring <aahringo@redhat.com> | 2021-06-02 15:45:19 +0200 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2021-06-02 18:53:04 +0200 |
commit | ac7d5d036dc93710971f532ed57f9a6858a2b262 (patch) | |
tree | 83ce0126a85920f52dc3a40d779c3a9fe918c8fa /fs/dlm/config.c | |
parent | fs: dlm: move dlm allow conn (diff) | |
download | linux-ac7d5d036dc93710971f532ed57f9a6858a2b262.tar.xz linux-ac7d5d036dc93710971f532ed57f9a6858a2b262.zip |
fs: dlm: introduce proto values
Currently the dlm protocol values are that TCP is 0 and everything else
is SCTP. This makes it difficult to introduce possible other transport
layers. The only one user space tool dlm_controld, which I am aware of,
handles the protocol value 1 for SCTP. We change it now to handle SCTP
as 1, this will break user space API but it will fix it so we can add
possible other transport layers.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/config.c')
-rw-r--r-- | fs/dlm/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/config.c b/fs/dlm/config.c index db717a879537..c91c1c73ed9d 100644 --- a/fs/dlm/config.c +++ b/fs/dlm/config.c @@ -952,7 +952,7 @@ int dlm_our_addr(struct sockaddr_storage *addr, int num) #define DEFAULT_SCAN_SECS 5 #define DEFAULT_LOG_DEBUG 0 #define DEFAULT_LOG_INFO 1 -#define DEFAULT_PROTOCOL 0 +#define DEFAULT_PROTOCOL DLM_PROTO_TCP #define DEFAULT_MARK 0 #define DEFAULT_TIMEWARN_CS 500 /* 5 sec = 500 centiseconds */ #define DEFAULT_WAITWARN_US 0 |