From 1421d91ebae419fc590591eb2d59683280c9edd9 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 2 Sep 2011 13:16:29 -0400 Subject: [PATCH 1/1] Revert "fdatasync sockets after send" This reverts commit a285a37667147f0e7ade6b45d147440438ee4d50. Signed-off-by: Mathieu Desnoyers --- libust/lttng-ust-comm.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libust/lttng-ust-comm.c b/libust/lttng-ust-comm.c index 1507a65..c5a3064 100644 --- a/libust/lttng-ust-comm.c +++ b/libust/lttng-ust-comm.c @@ -184,10 +184,6 @@ int register_app_to_sessiond(int socket) ret = lttcomm_send_unix_sock(socket, ®_msg, sizeof(reg_msg)); if (ret >= 0 && ret != sizeof(reg_msg)) return -EIO; - ret = fdatasync(socket); - if (ret) { - return -errno; - } return ret; } @@ -195,17 +191,11 @@ static int send_reply(int sock, struct lttcomm_ust_reply *lur) { ssize_t len; - int ret; len = lttcomm_send_unix_sock(sock, lur, sizeof(*lur)); switch (len) { case sizeof(*lur): DBG("message successfully sent"); - ret = fdatasync(sock); - if (ret) { - DBG("fdatasync error"); - return -1; - } return 0; case -1: if (errno == ECONNRESET) { -- 2.34.1