aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm/lowcomms.c
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2020-09-24 10:31:23 -0400
committerDavid Teigland <teigland@redhat.com>2020-09-29 14:00:32 -0500
commit3f78cd7d2449a07904b3a23751758cbdeaaa20f3 (patch)
tree090014706fb958cb5b63c7d7453487a0c8126a18 /fs/dlm/lowcomms.c
parent0461e0db941f8f49dcfd0576c4449f2e5beda2f6 (diff)
downloadlinux-3f78cd7d2449a07904b3a23751758cbdeaaa20f3.tar.gz
fs: dlm: fix mark per nodeid setting
This patch fixes to set per nodeid mark configuration for accepted sockets as well. Before this patch only the listen socket mark value was used for all accepted connections. This patch will ensure that the cluster mark attribute value will be always used for all sockets, if a per nodeid mark value is specified dlm will use this value for the specific node. Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/lowcomms.c')
-rw-r--r--fs/dlm/lowcomms.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
index 24f5e55313d836..96f84541867c40 100644
--- a/fs/dlm/lowcomms.c
+++ b/fs/dlm/lowcomms.c
@@ -790,6 +790,7 @@ static int accept_from_sock(struct connection *con)
int nodeid;
struct connection *newcon;
struct connection *addcon;
+ unsigned int mark;
if (!dlm_allow_conn) {
return -1;
@@ -826,6 +827,9 @@ static int accept_from_sock(struct connection *con)
return -1;
}
+ dlm_comm_mark(nodeid, &mark);
+ sock_set_mark(newsock->sk, mark);
+
log_print("got connection from %d", nodeid);
/* Check to see if we already have a connection to this node. This
@@ -971,9 +975,7 @@ static void sctp_connect_to_sock(struct connection *con)
return;
}
- result = dlm_comm_mark(con->nodeid, &mark);
- if (result < 0)
- return;
+ dlm_comm_mark(con->nodeid, &mark);
mutex_lock(&con->sock_mutex);
@@ -1071,9 +1073,7 @@ static void tcp_connect_to_sock(struct connection *con)
return;
}
- result = dlm_comm_mark(con->nodeid, &mark);
- if (result < 0)
- return;
+ dlm_comm_mark(con->nodeid, &mark);
mutex_lock(&con->sock_mutex);
if (con->retries++ > MAX_CONNECT_RETRIES)