summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2014-04-10 22:10:37 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2014-04-14 13:02:27 +0200
commite2f194952a218562b198c47e78f7337572cfb29e (patch)
treee1f0fc15efb984ee85e27d5e6c5298d80ff95f34
parenteccc50d86199921e8f2e0cf349db96e517b2625d (diff)
downloadlvm2-e2f194952a218562b198c47e78f7337572cfb29e.tar.gz
cleanup: clvmd reindent local_pipe_callback
Move !node_up check in front and reindent rest of the function to the left.
-rw-r--r--daemons/clvmd/clvmd.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/daemons/clvmd/clvmd.c b/daemons/clvmd/clvmd.c
index b1fe396f0..3e92490cc 100644
--- a/daemons/clvmd/clvmd.c
+++ b/daemons/clvmd/clvmd.c
@@ -779,25 +779,26 @@ static int local_pipe_callback(struct local_client *thisfd, char *buf,
static void timedout_callback(struct local_client *client, const char *csid,
int node_up)
{
- if (node_up) {
- struct node_reply *reply;
- char nodename[max_cluster_member_name_len];
+ struct node_reply *reply;
+ char nodename[max_cluster_member_name_len];
- clops->name_from_csid(csid, nodename);
- DEBUGLOG("Checking for a reply from %s\n", nodename);
- pthread_mutex_lock(&client->bits.localsock.mutex);
+ if (!node_up)
+ return;
- reply = client->bits.localsock.replies;
- while (reply && strcmp(reply->node, nodename) != 0)
- reply = reply->next;
+ clops->name_from_csid(csid, nodename);
+ DEBUGLOG("Checking for a reply from %s\n", nodename);
+ pthread_mutex_lock(&client->bits.localsock.mutex);
- pthread_mutex_unlock(&client->bits.localsock.mutex);
+ reply = client->bits.localsock.replies;
+ while (reply && strcmp(reply->node, nodename) != 0)
+ reply = reply->next;
- if (!reply) {
- DEBUGLOG("Node %s timed-out\n", nodename);
- add_reply_to_list(client, ETIMEDOUT, csid,
- "Command timed out", 18);
- }
+ pthread_mutex_unlock(&client->bits.localsock.mutex);
+
+ if (!reply) {
+ DEBUGLOG("Node %s timed-out\n", nodename);
+ add_reply_to_list(client, ETIMEDOUT, csid,
+ "Command timed out", 18);
}
}